32 lines
548 B
SCSS
32 lines
548 B
SCSS
@import "@Themes/constants.scss";
|
|
|
|
.root {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
align-self: stretch;
|
|
flex-wrap: wrap;
|
|
|
|
.title {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: var(--spacing-sm, 8px);
|
|
|
|
.refused-link {
|
|
color: var(--color-danger-500);
|
|
text-decoration: underline !important;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.date {
|
|
color: var(--color-primary-500);
|
|
}
|
|
}
|
|
|
|
@media screen and (max-width: $screen-s) {
|
|
flex-direction: column;
|
|
gap: var(--spacing-md, 16px);
|
|
align-items: flex-start;
|
|
}
|
|
}
|