lure-web/src/app.scss

35 lines
924 B
SCSS

/* Write your global styles here, in SCSS syntax. Variables and mixins from the src/variables.scss file are available here without importing */ /* Import only what you need from Bulma */
@import 'bulma/sass/utilities/_all';
@import 'bulma/sass/base/_all';
@import 'bulma/sass/elements/_all';
@import 'bulma/sass/form/_all';
@import 'bulma/sass/components/_all';
@import 'bulma/sass/grid/_all';
@import 'bulma/sass/helpers/_all';
@import 'bulma/sass/layout/_all';
@import './darkly/overrides.scss';
.input::placeholder {
color: darken($grey-light, 10) !important;
opacity: 1;
}
.input::-webkit-input-placeholder {
color: darken($grey-light, 10) !important;
opacity: 1;
}
.input::-moz-placeholder {
color: darken($grey-light, 10) !important;
opacity: 1;
}
.input::-ms-input-placeholder {
color: darken($grey-light, 10) !important;
opacity: 1;
}
pre {
background-color: transparent;
}