mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-27 21:06:49 +00:00
22 lines
254 B
SCSS
22 lines
254 B
SCSS
.ellipsed {
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
width: 100%;
|
|
}
|
|
|
|
.no-wrap {
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.flex {
|
|
display: flex;
|
|
|
|
&.flex-align-center {
|
|
align-items: center;
|
|
}
|
|
|
|
&.flex-justify-end {
|
|
justify-content: flex-end;
|
|
}
|
|
}
|