@charset "utf-8"; @use 'bulma/bulma'; @use 'bulma/sass/utilities/mixins'; .is-disabled { cursor: not-allowed; opacity: 0.5; > * { pointer-events: none; } } .navbar-item { width: var(--bulma-navbar-height); justify-content: center; } .media:first-of-type { padding-top: 1rem; } .buttons { @include mixins.mobile { &.is-centered-mobile { justify-content: center; &:not(.has-addons) { .button { margin-left: 0.25rem; margin-right: 0.25rem; } } } } } .overlay-fullscreen { @extend .is-overlay; z-index: 25; background-color: rgba(10, 10, 10, 0.2); position: fixed; } .dropdown-menu { @include mixins.mobile { width: 100vw; } } .dropdown-content { max-height: calc(100vh - calc(2 * var(--bulma-navbar-height))); overflow: auto; }