Files
snort/src/Element/NoteCreator.css
Alejandro Gomez 6f1a4c0cd0 note adjustments
2023-01-20 16:57:45 +01:00

53 lines
1.0 KiB
CSS

.note-creator {
margin-bottom: 10px;
background-color: var(--note-bg);
border: 1px solid var(--gray);
border-radius: 10px;
padding: 6px;
}
.note-reply {
margin: 10px;
}
.note-creator textarea {
outline: none;
resize: none;
min-height: 40px;
background-color: var(--note-bg);
border-radius: 10px 10px 0 0;
max-width: -webkit-fill-available;
max-width: -moz-available;
max-width: fill-available;
min-width: 100%;
min-width: -webkit-fill-available;
min-width: -moz-available;
min-width: fill-available;
}
.note-creator .actions {
width: 100%;
justify-content: flex-end;
margin-bottom: 5px;
}
.note-creator .attachment {
cursor: pointer;
padding: 5px 10px;
border-radius: 10px;
}
.note-creator .attachment .error {
font-weight: normal;
margin-right: 5px;
font-size: 14px;
}
.note-creator .btn {
border-radius: 20px;
font-weight: bold;
background-color: var(--bg-color);
color: var(--font-color);
font-size: var(--font-size);
}