waveterm/frontend/app/view/webview/webview.scss
Evan Simkowitz d8edea9fbc
Oops i actually made the tabs wrong (#1384)
forgot to update .editorconfig to include scss...
2024-12-04 13:49:14 -08:00

50 lines
924 B
SCSS

// Copyright 2024, Command Line Inc.
// SPDX-License-Identifier: Apache-2.0
.webview {
height: 100%;
width: 100%;
border: none !important;
outline: none !important;
overflow: hidden;
padding: 0;
margin: 0;
user-select: none;
// try to force pixel alignment to prevent
// subpixel rendering artifacts
transform: translate3d(0, 0, 0);
will-change: transform;
}
.webview-error {
display: flex;
position: absolute;
background-color: black;
top: 0;
left: 0;
height: 100%;
width: 100%;
z-index: 100;
div {
font-size: x-large;
color: var(--error-color);
display: flex;
margin: auto;
padding: 30px;
}
}
.block-frame-div-url {
background: rgba(255, 255, 255, 0.1);
input {
opacity: 1;
}
.iconbutton {
width: fit-content !important;
margin-right: 5px;
}
}