Skip to content

Commit

Permalink
fix: switch back to pixel based border sizes
Browse files Browse the repository at this point in the history
  • Loading branch information
xoxys committed Feb 21, 2021
1 parent e748a7d commit a8af7c3
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 14 deletions.
2 changes: 1 addition & 1 deletion src/sass/_base.scss
Original file line number Diff line number Diff line change
Expand Up @@ -430,7 +430,7 @@ img {
width: $padding-16;
height: $padding-16;

border: $border-2 solid transparent;
border: $border-1 solid transparent;
border-top-color: $body-font-color;
border-radius: 50%;

Expand Down
2 changes: 1 addition & 1 deletion src/sass/_chroma_github.scss
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@
}
.chroma .lntable td:first-child code {
background-color: $gray-200;
border-right: 1px solid #dcdfe3;
border-right: $border-1 solid #dcdfe3;
padding: 0.5em 0;
}
.chroma .lntable td code {
Expand Down
5 changes: 3 additions & 2 deletions src/sass/_defaults.scss
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,9 @@ $font-size-14: 0.875rem !default;
$font-size-16: 1rem !default;
$font-size-32: 2rem !default;

$border-2: 0.125rem !default;
$border-4: 0.25rem !default;
$border-1: 1px !default;
$border-2: 2px !default;
$border-4: 4px !default;

$border-radius: 0.15rem !default;

Expand Down
4 changes: 2 additions & 2 deletions src/sass/_markdown.scss
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
a,
&__link {
text-decoration: none;
border-bottom: 1px solid transparent;
border-bottom: $border-1 solid transparent;
line-height: 1em;

&:hover {
Expand Down Expand Up @@ -121,7 +121,7 @@
tr th,
tr td {
padding: $padding-8 $padding-16;
border: $border-2 solid $gray-200;
border: $border-1 solid $gray-200;
}

tr:nth-child(2n) {
Expand Down
4 changes: 2 additions & 2 deletions src/sass/_print.scss
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
}

.gdoc-footer {
border-top: 1px solid $gray-300;
border-top: $border-1 solid $gray-300;
}

.gdoc-markdown pre {
Expand All @@ -15,7 +15,7 @@
}

.chroma code {
border: 1px solid $gray-300;
border: $border-1 solid $gray-300;
padding: $padding-8 !important;
font-weight: normal !important;
}
Expand Down
12 changes: 6 additions & 6 deletions src/sass/_shortcodes.scss
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
margin-top: $padding-16;
margin-bottom: $padding-16;

border: $border-2 solid $gray-200;
border: $border-1 solid $gray-200;
border-radius: $border-radius;

overflow: hidden;
Expand Down Expand Up @@ -33,7 +33,7 @@
margin-top: $padding-16;
margin-bottom: $padding-16;

border: $border-2 solid $gray-200;
border: $border-1 solid $gray-200;
border-radius: $border-radius;

overflow: hidden;
Expand All @@ -44,20 +44,20 @@
&__label {
display: inline-block;
padding: $padding-8 $padding-16;
border-bottom: $border-2 transparent;
border-bottom: $border-1 transparent;
cursor: pointer;
}

&__content {
order: 999; //Move content blocks to the end
width: 100%;
border-top: $border-2 solid $gray-100;
border-top: $border-1 solid $gray-100;
padding: $padding-16;
display: none;
}

&__control:checked + &__label {
border-bottom: $border-2 solid $color-link;
border-bottom: $border-1 solid $color-link;
}
&__control:checked + &__label + &__content {
display: block;
Expand All @@ -84,7 +84,7 @@
.gdoc-button {
display: inline-block;
color: $gray-700;
border: $border-2 solid $gray-500;
border: $border-1 solid $gray-500;
border-radius: $border-radius;
margin: $padding-8 0;
cursor: pointer;
Expand Down

0 comments on commit a8af7c3

Please sign in to comment.