21 lines
1011 B
SCSS
21 lines
1011 B
SCSS
@use "bulma/sass/utilities/initial-variables.scss" as *;
|
|
|
|
.card {
|
|
--bulma-card-shadow: none;
|
|
border: 1px solid $grey-lighter;
|
|
}
|
|
|
|
:root {
|
|
// somehow this value keeps picking dark mode values despite [data-theme]="light"
|
|
--bulma-hr-background-color: var(--bulma-grey-90);
|
|
}
|
|
|
|
.textarea,
|
|
.input {
|
|
box-shadow: none;
|
|
}
|
|
// might break lots of stuff
|
|
// .skeleton-block:not(:last-child), .media:not(:last-child), .level:not(:last-child), .fixed-grid:not(:last-child), .grid:not(:last-child), .tabs:not(:last-child), .pagination:not(:last-child), .message:not(:last-child), .card:not(:last-child), .breadcrumb:not(:last-child), .field:not(:last-child), .file:not(:last-child), .title:not(:last-child), .subtitle:not(:last-child), .tags:not(:last-child), .table:not(:last-child), .table-container:not(:last-child), .progress:not(:last-child), .notification:not(:last-child), .content:not(:last-child), .buttons:not(:last-child), .box:not(:last-child), .block:not(:last-child) {
|
|
// margin-bottom: inherit;
|
|
// }
|