Skip to content

Commit

Permalink
[React] Redundant mesure unit (#28346)
Browse files Browse the repository at this point in the history
  • Loading branch information
qmonmert authored Dec 31, 2024
1 parent 720d158 commit 33adc19
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions generators/react/templates/src/main/webapp/app/app.scss.ejs
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ a {
.fullscreen {
position: fixed;
top: 100px;
left: 0px;
left: 0;
width: 99% !important;
height: calc(100vh - 110px) !important;
margin: 5px;
Expand Down Expand Up @@ -132,8 +132,8 @@ Generic styles

.shadow {
box-shadow:
rgba(0, 0, 0, 0.12) 0px 1px 6px,
rgba(0, 0, 0, 0.12) 0px 1px 4px;
rgba(0, 0, 0, 0.12) 0 1px 6px,
rgba(0, 0, 0, 0.12) 0 1px 4px;
border-radius: 2px;
}

Expand Down Expand Up @@ -249,7 +249,7 @@ Generic styles
/* end of padding helpers */

.no-margin {
margin: 0px;
margin: 0;
}
@mixin voffset($size) {
@if $size== '' {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ Navbar styles
background-color: #353d47;
padding: 0.2em 1em;
.profile-image {
margin: -10px 0px;
margin: -10px 0;
height: 40px;
width: 40px;
border-radius: 50%;
Expand Down Expand Up @@ -138,6 +138,6 @@ Navbar styles
height: 3px;
background-color: #009cd8;
position: absolute;
top: 0px;
top: 0;
z-index: 1031;
}

0 comments on commit 33adc19

Please sign in to comment.