Files
pybricks-code/src/index.scss
T

45 lines
716 B
SCSS

// SPDX-License-Identifier: MIT
// Copyright (c) 2020-2021 The Pybricks Authors
@import './variables.scss';
@import '~normalize.css';
@import '@blueprintjs/core/src/blueprint.scss';
:root {
--mobile-pad: 0px;
}
body {
// no scrolling of the page
overflow: hidden;
}
// Utility classes
.h-body {
// height makes everything fit without scrolling
height: calc(100vh - #{$pt-navbar-height} - #{$pb-status-bar-height} - var(--mobile-pad)) !important;
}
.h-100 {
height: 100%;
}
.w-100 {
width: 100%;
}
.p-absolute {
position: absolute;
}
.no-box-shadow {
box-shadow: unset !important;
}
// global style tweaks
.#{$ns}-form-group > .#{$ns}-label {
font-weight: bolder;
}