mirror of
https://github.com/wavetermdev/waveterm.git
synced 2025-01-07 19:28:44 +01:00
69c99dd13a
![image](https://github.com/user-attachments/assets/202636dc-aab5-4164-9729-fecd0cc804ae) Also fixes atom usage for the url bar so it will properly update when any upstream atom states change
31 lines
584 B
Plaintext
31 lines
584 B
Plaintext
// 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;
|
|
|
|
// try to force pixel alignment to prevent
|
|
// subpixel rendering artifacts
|
|
transform: translate3d(0, 0, 0);
|
|
will-change: transform;
|
|
}
|
|
|
|
.block-frame-div-url {
|
|
background: rgba(255, 255, 255, 0.1);
|
|
|
|
input {
|
|
opacity: 1;
|
|
}
|
|
|
|
.iconbutton {
|
|
width: fit-content !important;
|
|
margin-right: 5px;
|
|
}
|
|
}
|