This commit is contained in:
Liyas Thomas
2020-07-28 05:35:37 +05:30
parent 4ab7650c51
commit fa28aaee44

View File

@@ -316,6 +316,7 @@ button {
span { span {
display: inline-flex; display: inline-flex;
margin-left: 8px; margin-left: 8px;
text-align: left;
} }
&:not([disabled]):hover, &:not([disabled]):hover,
@@ -567,7 +568,7 @@ ol li {
* { * {
display: inline-flex; display: inline-flex;
flex-flow: row wrap; flex-flow: row nowrap;
align-items: center; align-items: center;
justify-content: center; justify-content: center;
} }
@@ -773,3 +774,11 @@ section {
.virtual-list { .virtual-list {
overflow: auto; overflow: auto;
} }
.truncate {
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
overflow-wrap: break-word;
word-break: break-all;
}