mirror of
https://github.com/harness/drone.git
synced 2025-05-21 11:29:52 +08:00
58 lines
1.5 KiB
SCSS
58 lines
1.5 KiB
SCSS
/*
|
|
* Copyright 2023 Harness, Inc.
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
.container {
|
|
display: flex;
|
|
flex-direction: column;
|
|
background-color: var(--black);
|
|
height: 100%;
|
|
overflow-y: auto;
|
|
}
|
|
|
|
.log {
|
|
color: white;
|
|
font-family: Inconsolata, monospace;
|
|
}
|
|
|
|
.header {
|
|
position: sticky;
|
|
top: 0;
|
|
background-color: var(--black) !important;
|
|
height: var(--log-content-header-height);
|
|
|
|
.headerLayout {
|
|
display: flex;
|
|
align-items: baseline;
|
|
border-bottom: 1px solid var(--grey-800);
|
|
padding: var(--spacing-medium) 0;
|
|
font-weight: 600;
|
|
}
|
|
}
|
|
|
|
.error {
|
|
position: sticky !important;
|
|
top: 0 !important;
|
|
background-color: var(--red) !important;
|
|
height: var(--log-content-header-height) !important;
|
|
border-bottom: 1px solid var(--grey-800) !important;
|
|
padding: var(--spacing-medium) !important;
|
|
font-weight: 600 !important;
|
|
}
|
|
|
|
.steps {
|
|
padding: var(--spacing-medium) 42px var(--spacing-medium) var(--spacing-medium) !important;
|
|
}
|