less placement.less

This commit is contained in:
Yuri Kuznetsov
2023-10-23 14:22:25 +03:00
parent a066c0a187
commit 6463eaa6f6
2 changed files with 48 additions and 0 deletions
+1
View File
@@ -3539,6 +3539,7 @@ body > .autocomplete-suggestions.text-search-suggestions {
@import "misc/kanban.less";
@import "elements/placement.less";
@import "elements/site.less";
@import "elements/modal.less";
@import "elements/buttons.less";
@@ -0,0 +1,47 @@
.margin {
margin: @table-cell-padding 0;
}
.margin-top-sm {
margin-top: calc(@table-cell-padding / 2);
}
.margin-top {
margin-top: @table-cell-padding;
}
.margin-top-2x {
margin-top: @table-cell-padding * 2;
}
.margin-bottom-sm {
margin-bottom: calc(@table-cell-padding / 2);
}
.margin-bottom {
margin-bottom: @table-cell-padding;
}
.margin-bottom-sm {
margin-bottom: calc(@table-cell-padding / 2);
}
.margin-bottom-2x {
margin-bottom: @table-cell-padding * 2;
}
.margin-bottom-3x {
margin-bottom: @table-cell-padding * 3;
}
.margin-bottom-4x {
margin-bottom: @table-cell-padding * 4;
}
.margin-bottom.margin {
margin-top: 0;
}
.center-align {
text-align: center;
}