mirror of
https://github.com/wavetermdev/waveterm.git
synced 2025-02-01 23:21:59 +01:00
0145e8fe99
The migration tool we used didn't take into account our formatting standards so I'm bulk-formatting the SCSS files to bring them back up to our standards. Basically this just changes the tab size for all the files.
30 lines
567 B
SCSS
30 lines
567 B
SCSS
// Copyright 2024, Command Line Inc.
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
.code-editor-wrapper {
|
|
display: flex;
|
|
flex-direction: column;
|
|
width: 100%;
|
|
height: 100%;
|
|
overflow: hidden;
|
|
align-items: center;
|
|
justify-content: center;
|
|
|
|
.code-editor {
|
|
display: flex;
|
|
flex-direction: column;
|
|
height: 100%;
|
|
width: 100%;
|
|
|
|
.monaco-editor .slider {
|
|
background: rgba(255, 255, 255, 0.4);
|
|
border-radius: 4px;
|
|
transition: background 0.2s ease;
|
|
|
|
&:hover {
|
|
background: rgba(255, 255, 255, 0.6);
|
|
}
|
|
}
|
|
}
|
|
}
|