Remove bucket-background sass var, define bucket background color directly
continuous-integration/drone/pr Build is passing Details

This commit is contained in:
Adrian Simmons 2021-11-08 15:26:07 +00:00
parent 92b2010cdc
commit 54f1271ab9
1 changed files with 2 additions and 3 deletions

View File

@ -593,7 +593,6 @@ export default {
</script>
<style lang="scss">
$bucket-background: var(--grey-100);
$ease-out: all .3s cubic-bezier(0.23, 1, 0.32, 1);
$bucket-width: 300px;
$bucket-header-height: 60px;
@ -636,7 +635,7 @@ $filter-container-height: '1rem - #{$switch-view-height}';
}
.bucket {
background-color: $bucket-background;
background-color: var(--grey-100);
border-radius: $radius;
position: relative;
@ -685,7 +684,7 @@ $filter-container-height: '1rem - #{$switch-view-height}';
padding-right: 1rem;
.button {
background: $bucket-background;
background: var(--grey-100);
width: 100%;
}
}