45 lines
562 B
CSS
45 lines
562 B
CSS
.decoration-preview {
|
|
background-color: white;
|
|
padding: 5px;
|
|
}
|
|
|
|
.trash {
|
|
cursor: pointer;
|
|
}
|
|
|
|
.table {
|
|
overflow-wrap: break-word;
|
|
table-layout: fixed;
|
|
}
|
|
|
|
.table-container {
|
|
margin-top: 40px;
|
|
overflow-x: auto;
|
|
width: 50%;
|
|
}
|
|
|
|
.overview {
|
|
position: fixed;
|
|
overflow-y: scroll;
|
|
overflow-x: hidden;
|
|
width: 100%;
|
|
border-left: thin solid lightgrey;
|
|
padding-left: 50px;
|
|
padding-top: 20px;
|
|
margin-left: 10px;
|
|
height: 100vh;
|
|
}
|
|
|
|
.form-group {
|
|
width: 25%;
|
|
}
|
|
|
|
h3 {
|
|
margin-bottom: 20px;
|
|
margin-left: -20px;
|
|
}
|
|
|
|
label {
|
|
display: block;
|
|
}
|