Client - fix record cards style when displaying date w/ text format

This commit is contained in:
Sam 2022-11-01 11:07:56 +01:00
parent d1c658b5bb
commit 9d37f32f6d

View File

@ -86,7 +86,7 @@
align-items: center; align-items: center;
justify-content: space-between; justify-content: space-between;
span { span {
padding: 2px 5px; padding: 2px;
} }
.record-type { .record-type {
flex-grow: 1; flex-grow: 1;
@ -94,7 +94,12 @@
.record-value { .record-value {
font-weight: bold; font-weight: bold;
white-space: nowrap; white-space: nowrap;
padding-right: $default-padding * 2; padding-right: $default-padding;
}
.record-date {
white-space: nowrap;
min-width: 30%;
text-align: right;
} }
} }
} }