Skip to content

Commit

Permalink
fix: 🔥 style adjustments and fixes in tables and mobile
Browse files Browse the repository at this point in the history
  • Loading branch information
sandeep-deriv committed Oct 1, 2024
1 parent 5f266a9 commit 614479a
Show file tree
Hide file tree
Showing 9 changed files with 6 additions and 15 deletions.
1 change: 1 addition & 0 deletions src/components/custom-tabs/custom-tabs.scss
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
font-size: 20px;
font-family: var(--ibm-font-family-base);
font-weight: var(--ifm-font-weight-semibold);
overflow-x: hidden;

&_header {
margin-block: 45px;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@

@include tablet-lg {
border: none;
margin: 0 1rem;
gap: 3rem;
}

Expand All @@ -36,6 +35,8 @@
table-layout: fixed;
border-collapse: collapse;
margin-inline: 48px;
max-height: 560px;
overflow-x: hidden;

th,
td,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
@use 'src/styles/mixins' as *;

.app-register-container {
margin-inline: 16px;
margin-top: 60px;
max-width: 608px;
&__input {
Expand Down
7 changes: 2 additions & 5 deletions src/features/dashboard/components/apps-table/apps-table.scss
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,8 @@
position: relative;
max-height: 560px;
overflow-y: auto;
table-layout: fixed;
border-collapse: collapse;
display: flex;
flex-direction: column;
align-items: center;
margin-inline: 48px;
overflow-x: hidden;

@include tablet-lg {
margin-inline: 8px;
Expand All @@ -48,6 +44,7 @@
}
}
tr {
border-top: none;
background-color: transparent;
font-weight: 400;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,5 @@

.copyTextIcon {
margin-left: 8px;
vertical-align: middle;
margin-top: 4px;
}
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@
max-width: 608px;
margin: auto;
text-align: center;
padding-inline: 16px;
h2 {
margin-bottom: 8px;
}
Expand Down
1 change: 0 additions & 1 deletion src/features/dashboard/manage-apps/manage-apps.scss
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@

.manage_apps {
width: 100%;
overflow: auto;
border-top-left-radius: rem(1.6);
border-top-right-radius: rem(1.6);
}
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,6 @@
margin-block: 4px;
}

&__oauth_container {
margin-left: 16px;
}

&__oauth_info {
list-style: disc;
line-height: 24px;
Expand Down
1 change: 0 additions & 1 deletion src/styles/index.scss
Original file line number Diff line number Diff line change
Expand Up @@ -471,7 +471,6 @@ main[class*='docMainContainer'] .container {
@media (max-width: 768px) {
.navbar__logo {
width: rem(9);
margin-left: rem(1);
}

.navbar__toggle {
Expand Down

0 comments on commit 614479a

Please sign in to comment.