Skip to content

Commit

Permalink
feat: fix the padding issues
Browse files Browse the repository at this point in the history
  • Loading branch information
sheikalthaf committed Oct 24, 2023
1 parent 99979f2 commit eab4f4f
Show file tree
Hide file tree
Showing 16 changed files with 1,146 additions and 862 deletions.
10 changes: 5 additions & 5 deletions src/app/app.component.scss
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
display: flex;
align-items: center;
justify-content: center;
width: 200px;
height: 50px;
width: 180px;
height: 40px;
box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.3);
border-radius: 5px;
background-color: white;
Expand All @@ -13,14 +13,14 @@
--scale: 2;
left: 318px;
top: 263px;
width: calc(10px + (10px * var(--scale)));
height: calc(10px + (10px * var(--scale)));
width: calc(5px + (5px * var(--scale)));
height: calc(5px + (5px * var(--scale)));
position: fixed;
background: blue;
z-index: 124;
pointer-events: none;
}

button {
@apply p-1 border;
@apply p-1;
}
Loading

0 comments on commit eab4f4f

Please sign in to comment.