snort/src/Element/NoteCreator.css

50 lines
983 B
CSS
Raw Normal View History

2023-01-03 16:55:51 +00:00
.note-creator {
margin-bottom: 10px;
background-color: var(--gray);
2023-01-06 12:45:30 +00:00
border-radius: 10px;
2023-01-03 16:55:51 +00:00
}
.note-reply {
margin: 10px;
}
2023-01-03 16:55:51 +00:00
.note-creator textarea {
2023-01-06 12:45:30 +00:00
outline: none;
resize: none;
2023-01-03 16:55:51 +00:00
min-height: 40px;
border-radius: 10px 10px 0 0;
max-width: -webkit-fill-available;
max-width: -moz-available;
max-width: fill-available;
min-width: 100%;
2023-01-03 16:55:51 +00:00
min-width: -webkit-fill-available;
min-width: -moz-available;
min-width: fill-available;
2023-01-03 16:55:51 +00:00
}
.note-creator .actions {
2023-01-06 12:45:30 +00:00
width: 100%;
justify-content: flex-end;
margin-bottom: 5px;
}
.note-creator .attachment {
2023-01-03 16:55:51 +00:00
cursor: pointer;
padding: 5px 10px;
2023-01-06 12:45:30 +00:00
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(--gray-secondary);
color: var(--gray-superlight);
border-color: var(--gray-superlight);
2023-01-06 12:45:30 +00:00
}