37 lines
1.3 KiB
SCSS
37 lines
1.3 KiB
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;
|
|
}
|
|
|
|
.button {
|
|
box-shadow: none;
|
|
}
|
|
|
|
.delete {
|
|
--bulma-delete-background-alpha: 0.3;
|
|
}
|
|
|
|
.modal-card {
|
|
border-radius: var(--bulma-modal-card-head-radius);
|
|
}
|
|
|
|
.modal-card-head {
|
|
--bulma-shadow: 0 0.125em 0 0 hsla(var(--bulma-shadow-h), var(--bulma-shadow-s), var(--bulma-shadow-l), 0.1);
|
|
}
|
|
// 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;
|
|
// }
|