oedb-backend/frontend/src/app/pages/home/home.scss

102 lines
1.6 KiB
SCSS
Raw Normal View History

2025-10-03 13:40:08 +02:00
:host {
display: block;
}
.layout {
display: grid;
grid-template-columns: 400px 1fr;
2025-10-03 13:40:08 +02:00
grid-template-rows: 100vh;
gap: 0;
}
.aside {
background: #ffffff;
border-right: 1px solid rgba(0,0,0,0.06);
box-shadow: 2px 0 12px rgba(0,0,0,0.03);
padding: 16px;
padding-bottom: 150px;
2025-10-03 13:40:08 +02:00
overflow: auto;
}
.main {
display: flex;
flex-direction: column;
height: 100vh;
overflow: hidden;
}
.toolbar {
display: flex;
align-items: center;
justify-content: space-between;
padding: 8px 12px;
.loading {
color: #007bff;
font-size: 12px;
}
}
.controls {
margin: 15px 0;
padding: 15px;
background: #f8f9fa;
border-radius: 6px;
border: 1px solid #e9ecef;
.control-group {
margin-bottom: 12px;
&:last-child {
margin-bottom: 0;
}
label {
display: block;
font-size: 12px;
font-weight: 600;
color: #495057;
margin-bottom: 4px;
input[type="checkbox"] {
margin-right: 6px;
}
}
input[type="number"] {
width: 100%;
padding: 6px 8px;
border: 1px solid #ced4da;
border-radius: 4px;
font-size: 14px;
&:focus {
outline: none;
border-color: #007bff;
box-shadow: 0 0 0 2px rgba(0,123,255,0.25);
}
}
.btn {
width: 100%;
padding: 8px 12px;
background: #6c757d;
color: white;
border: none;
border-radius: 4px;
cursor: pointer;
font-size: 12px;
transition: background-color 0.2s;
&:hover {
background: #5a6268;
}
}
}
2025-10-03 13:40:08 +02:00
}
.map {
flex: 1 1 auto;
min-height: 0;
2025-10-02 22:53:50 +02:00
}