| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- @layer components, karma, theme;
- header {
- position: fixed;
- width: 100%;
- z-index: 5;
- }
- aside {
- padding-top: 4em;
- z-index: 3; /* Make sure the sidebar is on top of the terminal */
- }
- main {
- padding-top: 4em;
- }
- dialog {
- border-radius: 1em;
- }
- section {
- padding: 0;
- }
- aside .flex-row {
- padding-left: 1em;
- padding-right: .5em;
- }
- #sidebar-toggler-button {
- margin-right: .5em;
- }
- div.buttons button svg {
- vertical-align: middle;
- }
- section.small {
- border-radius: .4em;
- }
- .sm-side-icons .action-button button {
- display: flex;
- flex-direction: row;
- align-items: center;
- }
- .sm-imageicons-fullwidth .action-button button .icon img {
- width: 100%;
- }
- .sm-transparent-header header {
- background-color: transparent;
- box-shadow: none;
- border-color: transparent;
- }
- .sm-transparent-header #sidebar-button {
- border-color: transparent;
- }
- .sm-transparent-footer footer span {
- background-color: transparent;
- }
|