This repository has been archived on 2023-10-15. You can view files and clone it, but cannot push or open issues or pull requests.

49 lines
936 B
SCSS

.fcontainer {
display: flex;
flex-direction: column;
}
.innercontainer {
display: flex;
flex-direction: row;
background-color: #E4E4E4;
border-radius: 1em;
}
.innercontainer-dark {
display: flex;
flex-direction: row;
background-color: #353535;
border-radius: 1em;
}
.fquote {
display: flex;
flex-grow: 8;
}
.fbuttons {
display: flex;
align-self: flex-end;
}
.del-button {
border-color: #F44336 !important;
color: #F44336 !important;
}
.sel-button {
border-color: #353535 !important;
color: #353535 !important;
}
.del-button-dark {
border-color: #F44336 !important;
color: #F44336 !important;
}
.sel-button-dark {
border-color: #f8fafb !important;
color: #f8fafb !important;
}