Skip to content

Commit

Permalink
feat(): update scss screen resolution
Browse files Browse the repository at this point in the history
  • Loading branch information
develite98 committed Oct 8, 2023
1 parent 4cdb23a commit e2c41ac
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@
display: flex;
align-items: center;
font-weight: 500;
gap: 6px;
padding: 6px;
gap: 0.5rem;
padding: 0.5rem;
border-radius: 4px;
overflow: hidden;
cursor: pointer;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,6 @@

&__child-item {
padding: 10px 10px 10px 24px;
font-size: 12px;
display: flex;
align-items: center;
background-color: var(--child-menu-active-color);
Expand Down Expand Up @@ -82,19 +81,19 @@

&__item {
width: 100%;
min-height: 48px;
min-height: 2rem;
border-radius: var(--border-radius-default);
margin-bottom: 4px;
cursor: pointer;
position: relative;
justify-content: flex-start;
display: flex;
padding: 14px 0px;
padding: 0.75rem 0px;
flex-direction: column;

&.--fixed {
max-width: 56px;
height: 32px;
height: 2rem;
margin: unset;
min-height: unset;
padding: 6px 0px !important;
Expand Down
3 changes: 2 additions & 1 deletion apps/mix-cms/src/assets/styles/ag-table.scss
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
--ag-background-color: var(--background-color-primary);
--ag-cell-horizontal-border: 1px solid var(--border-color-default);
--ag-header-height: 32px;
--ag-row-height: 40px;
--ag-row-height: 2.5rem;
--ag-row-hover-color: rgba(233, 234, 237, 0.5);
--ag-font-size: inherit !important;
}
1 change: 1 addition & 0 deletions apps/mix-cms/src/assets/styles/reboot/index.scss
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
@import './reboot.scss';
@import './reboot.full-hd.scss';
@import './reboot.ultra-hd.scss';
@import './reboot.hd.scss';
2 changes: 1 addition & 1 deletion apps/mix-cms/src/assets/styles/reboot/reboot.hd.scss
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
@media only screen and (max-width: 1660px) {
html,
body {
font-size: var(--text-size-xs, 0.75rem) !important;
font-size: var(--text-size-xs) !important;
}
}
2 changes: 1 addition & 1 deletion apps/mix-cms/src/assets/styles/variables.scss
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ html {
--text-03: var(--tui-text-03);

--text-size-xxs: 0.625rem;
--text-size-xs: 0.75rem;
--text-size-xs: 0.8rem;
--text-size-s: 0.875rem;
--text-size-m: 1rem;
--text-size-l: 1.125rem;
Expand Down

1 comment on commit e2c41ac

@vercel
Copy link

@vercel vercel bot commented on e2c41ac Oct 8, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.