23 lines
387 B
SCSS
23 lines
387 B
SCSS
.container {
|
|
line-break: anywhere;
|
|
|
|
.buttons {
|
|
width: 100%;
|
|
margin: 15px 0;
|
|
display: flex;
|
|
gap: 15px;
|
|
align-content: stretch;
|
|
flex-wrap: wrap;
|
|
|
|
tc-file-chooser,
|
|
button {
|
|
min-width: 150px;
|
|
flex-grow: 1;
|
|
}
|
|
}
|
|
|
|
.error-message {
|
|
display: flex;
|
|
color: #d00;
|
|
}
|
|
} |