waveterm/frontend/app/element/modal.scss

58 lines
1.3 KiB
SCSS
Raw Normal View History

// Copyright 2024, Command Line Inc.
// SPDX-License-Identifier: Apache-2.0
2024-05-16 22:11:02 +02:00
.modal-container {
position: absolute;
top: 0;
left: 0;
width: 100vw;
height: 100%;
z-index: var(--zindex-elem-modal);
background-color: rgba(21, 23, 21, 0.7);
2024-05-16 22:11:02 +02:00
.modal {
display: flex;
flex-direction: column;
border-radius: 10px;
padding: 0;
width: 80%;
margin-top: 25vh;
margin-left: auto;
margin-right: auto;
background: var(--main-bg-color);
border: 1px solid var(--border-color);
2024-05-16 22:11:02 +02:00
.modal-header {
display: flex;
flex-direction: column;
padding: 20px 20px 10px;
border-bottom: 1px solid var(--border-color);
2024-05-16 22:11:02 +02:00
.modal-title {
margin: 0 0 5px;
color: var(--main-text-color);
font-size: var(--title-font-size);
}
2024-05-16 22:11:02 +02:00
p {
margin: 0;
font-size: 0.8rem;
color: var(--secondary-text-color);
}
}
2024-05-16 22:11:02 +02:00
.modal-content {
padding: 20px;
overflow: auto;
}
2024-05-16 22:11:02 +02:00
.modal-footer {
display: flex;
flex-direction: row;
justify-content: flex-end;
padding: 15px 20px;
gap: 20px;
}
2024-05-16 22:11:02 +02:00
}
}