Files
openfoodnetwork/app/webpacker/css/shared/utilities.scss
Jean-Baptiste Bellet 30ba29382a Avoid name collision by renaming some classes with a prefix flex-
This classes should only be used with `.flex`
2023-04-26 09:52:24 +02:00

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;
}
}