Skip to content

Commit

Permalink
remove usage of 'unset' in CSS
Browse files Browse the repository at this point in the history
  • Loading branch information
thecristen committed Jan 15, 2020
1 parent 8aaea87 commit 83735ee
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions apps/site/assets/css/_schedule-page-line-diagram.scss
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ $line-width: 8px; // width of the colored line in the diagram
text-align: center;

.btn {
padding: unset;
padding: 0;
}
}

Expand Down Expand Up @@ -188,11 +188,11 @@ $line-width: 8px; // width of the colored line in the diagram
}

.c-expandable-block__header {
background-color: unset;
background-color: initial;
border: $border;
border-bottom: 0;
margin-top: 0;
padding: unset;
padding: 0;
}

// The "show/hide stops" toggle
Expand All @@ -218,7 +218,7 @@ $line-width: 8px; // width of the colored line in the diagram
}

.m-schedule-diagram__lines--collapsed {
margin: unset;
margin: initial;
}
}

Expand Down
2 changes: 1 addition & 1 deletion apps/site/assets/css/_shuttles-page.scss
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

@include media-breakpoint-only(xs) {
&:not(:first-child):not(:last-child) {
border-radius: unset;
border-radius: inherit;
}

&:first-child:not(:last-child) {
Expand Down

0 comments on commit 83735ee

Please sign in to comment.