Files
planka/client/src/components/comments/Comments/Add.module.scss

50 lines
876 B
SCSS
Raw Normal View History

/*!
* Copyright (c) 2024 PLANKA Software GmbH
* Licensed under the Fair Use License: https://github.com/plankanban/planka/blob/master/LICENSE.md
*/
:global(#app) {
.button {
white-space: nowrap;
}
.controls {
align-items: center;
display: flex;
font-size: 12px;
margin-top: 6px;
}
.field {
textarea {
2025-06-07 18:03:36 +02:00
background: #fff !important;
border: 1px solid rgba(9, 30, 66, 0.13);
border-radius: 3px;
box-sizing: border-box;
color: #333;
display: block;
font-size: 14px;
2025-06-07 18:03:36 +02:00
line-height: 1.4;
margin: 0 !important;
overflow: hidden;
padding: 8px 12px;
resize: none;
&:focus {
outline: none;
}
}
}
.mention {
background-color: #f1f8ff;
border-radius: 3px;
}
.suggestion {
align-items: center;
display: flex;
gap: 8px;
}
}