44 lines
568 B
CSS
44 lines
568 B
CSS
.decoration-preview {
|
|
padding: 5px;
|
|
}
|
|
|
|
.trash {
|
|
cursor: pointer;
|
|
}
|
|
|
|
.table {
|
|
overflow-wrap: break-word;
|
|
table-layout: fixed;
|
|
}
|
|
|
|
.table-container {
|
|
margin-top: 40px;
|
|
overflow-x: auto;
|
|
width: 65%;
|
|
}
|
|
|
|
/* enable scrolling for long list of awardings */
|
|
.overview {
|
|
position: fixed;
|
|
overflow-y: scroll;
|
|
overflow-x: hidden;
|
|
width: 100%;
|
|
border-left: thin solid lightgrey;
|
|
padding: 20px 0 0 50px;
|
|
margin-left: 10px;
|
|
height: 100vh;
|
|
bottom: 10px;
|
|
}
|
|
|
|
.form-group {
|
|
width: 25%;
|
|
}
|
|
|
|
h3 {
|
|
margin: 80px 0 20px -20px;
|
|
}
|
|
|
|
label {
|
|
display: block;
|
|
}
|