Files
copenlight/styles/_attachments.scss
Ivan Carlos de Almeida 6fa41a771d
Some checks failed
Build, Push, Publish / Build & Release (push) Failing after 2s
Sync Repo / sync (push) Failing after 2s
first load
2025-12-16 04:40:00 -03:00

33 lines
563 B
SCSS

/***** Attachments *****/
/* Styles attachments inside posts, articles and comments */
.attachments {
.attachment-item {
padding-left: 20px;
position: relative;
margin-bottom: 10px;
&:last-child { margin-bottom: 0; }
.attachment-icon {
color: $text_color;
left: 0;
position: absolute;
top: 5px;
}
[dir="rtl"] & {
padding-left: 0;
padding-right: 20px;
.attachment-icon {
left: auto;
right: 0;
}
}
}
}
.upload-dropzone span {
color: $secondary-text-color;
}