Remove bucket-background sass var, define bucket background color directly
All checks were successful
continuous-integration/drone/pr Build is passing

This commit is contained in:
Adrian Simmons 2021-11-08 15:26:07 +00:00
parent 92b2010cdc
commit 54f1271ab9

View File

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