mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-26 20:56:48 +00:00
There were all sorts of dependencies hiding in there, and it was overwriting some of the admin variables. Better to keep things separate and simple. I discovered that there was one legitimate reason for importing them though: for styling the trix editor. I can't think of a good way to safely import them without affecting the other variables, so I just hardcoded the colours for now.
24 lines
314 B
SCSS
24 lines
314 B
SCSS
#save-bar {
|
|
position: fixed;
|
|
width: 100%;
|
|
z-index: 100;
|
|
bottom: 0px;
|
|
left: 0;
|
|
padding: 8px 8px;
|
|
font-weight: bold;
|
|
background-color: $spree-light-blue;
|
|
color: $spree-blue;
|
|
|
|
h5 {
|
|
color: $spree-blue;
|
|
|
|
&.error {
|
|
color: $color-error;
|
|
}
|
|
}
|
|
|
|
input {
|
|
margin-right: 5px;
|
|
}
|
|
}
|