Skip to content

Commit

Permalink
feat: Add 2px Margin Helpers - Meeds-io/MIPs#159
Browse files Browse the repository at this point in the history
  • Loading branch information
boubaker committed Dec 3, 2024
1 parent abc13c2 commit 6961265
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 1 deletion.
11 changes: 11 additions & 0 deletions platform-ui-skin/src/main/webapp/skin/less/core/helpers.less
Original file line number Diff line number Diff line change
Expand Up @@ -646,8 +646,19 @@
}

.ml-n2px {
margin-left: -2px !important;
}
.ma-n2px {
margin: -2px !important;
}
.ms-n2px {
margin-left: -2px ~'!important; /** orientation=lt */ ';
margin-right: -2px ~'!important; /** orientation=rt */ ';
}
.me-n2px {
margin-right: -2px ~'!important; /** orientation=lt */ ';
margin-left: -2px ~'!important; /** orientation=rt */ ';
}

.py-6px {
padding-top: 6px!important;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@

.logoContainer {
position: relative;
min-width: 30px;
min-width: 36px;
width: auto;
box-sizing: content-box;
img {
Expand Down

0 comments on commit 6961265

Please sign in to comment.