chore: Clean syntax

This commit is contained in:
Lucas Larroche 2022-02-28 11:28:33 +07:00
parent 8b6ae9bf93
commit 667c94951a
7 changed files with 12 additions and 12 deletions

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View file

@ -29,15 +29,15 @@ dialog {
max-height: calc(100vh - var(--spacing) * 2); max-height: calc(100vh - var(--spacing) * 2);
overflow: auto; overflow: auto;
@if map-get($breakpoints, 'sm') { @if map-get($breakpoints, "sm") {
@media (min-width: map-get($breakpoints, 'sm')) { @media (min-width: map-get($breakpoints, "sm")) {
max-width: map-get($viewports, 'sm'); max-width: map-get($viewports, "sm");
} }
} }
@if map-get($breakpoints, 'md') { @if map-get($breakpoints, "md") {
@media (min-width: map-get($breakpoints, 'md')) { @media (min-width: map-get($breakpoints, "md")) {
max-width: map-get($viewports, 'md'); max-width: map-get($viewports, "md");
} }
} }