Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
31 changes: 18 additions & 13 deletions src/scss/components/_button.scss
Original file line number Diff line number Diff line change
Expand Up @@ -9,20 +9,25 @@
}

&--scroll {
color: #7e8694;
background-color: $color-text-white;
display: none;

&--left {
border-radius: 50px 0 0 50px;
}

&--right {
border-radius: 0 50px 50px 0;
}

&:focus {
z-index: 2;
outline: 3px solid $color-focus-outline;
@include breakpoint("medium") {
display: block;
color: #7e8694;
background-color: $color-text-white;

&--left {
border-radius: 50px 0 0 50px;
}

&--right {
border-radius: 0 50px 50px 0;
}

&:focus {
z-index: 2;
outline: 3px solid $color-focus-outline;
}
}
}
}
6 changes: 1 addition & 5 deletions src/scss/components/_table.scss
Original file line number Diff line number Diff line change
Expand Up @@ -151,16 +151,12 @@

&--sticky {
position: sticky;
top: rem(48);
top: rem(68.4);
z-index: 10;
box-shadow:
0 1px 2px hsl(0deg 0% 0% / 5%),
0 1px 4px hsl(0deg 0% 0% / 5%),
0 2px 8px hsl(0deg 0% 0% / 5%);

@include breakpoint("medium") {
top: rem(50);
}
}
}
}
Expand Down