Skip to content

Commit

Permalink
Fix md and lg scss var names (#14579)
Browse files Browse the repository at this point in the history
  • Loading branch information
edmundito authored Jul 11, 2022
1 parent 4e80a67 commit 900c212
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
@use "../../../../../scss/variables";

.container {
margin-top: variables.$spacing-m;
margin-top: variables.$spacing-md;
display: flex;
align-items: center;
justify-content: center;
Expand Down Expand Up @@ -32,7 +32,7 @@
line-height: 29px;
text-align: center;
color: colors.$dark-blue-900;
margin: variables.$spacing-m;
margin: variables.$spacing-md;
word-wrap: break-word;
}
}
Expand Down
6 changes: 3 additions & 3 deletions airbyte-webapp/src/scss/_variables.scss
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@ $border-thin: 1px;
$border-thick: 2px;

$border-radius-sm: 8px;
$border-radius-m: 10px;
$border-radius-md: 10px;

$spacing-xs: 3px;
$spacing-sm: 5px;
$spacing-m: 10px;
$spacing-l: 15px;
$spacing-md: 10px;
$spacing-lg: 15px;
$spacing-xl: 20px;
$spacing-2xl: 40px;
$spacing-page-bottom: 150px;

0 comments on commit 900c212

Please sign in to comment.