Files
openfoodnetwork/app/webpacker/css/admin/components/save_bar.scss
David Cook bf9cd09462 Remove dependence on darkswarm variables
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.
2023-08-03 09:47:44 +10:00

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;
}
}