Skip to content

Commit

Permalink
Fix menu height
Browse files Browse the repository at this point in the history
  • Loading branch information
claudiaaziz committed Dec 19, 2023
1 parent 26d4ad0 commit 67b1d53
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 3 deletions.
3 changes: 2 additions & 1 deletion dist/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ header h1 {
left: 50%;
transform: translateX(-50%);
padding: 20px;
height: 10%;
height: 12%;
}

button {
Expand Down Expand Up @@ -227,6 +227,7 @@ button:hover {
background-color: transparent;
margin-left: -75px;
margin-right: -20px;
margin-top: 12px;
}

.pcr-app[data-theme=classic] {
Expand Down
25 changes: 23 additions & 2 deletions src/styles/menu.scss
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,9 @@
left: 50%;
transform: translateX(-50%);
padding: 20px;
height: 10%;
height: 12%;
// max-height: 395.195px;
// background-color: red;
}

button {
Expand Down Expand Up @@ -40,6 +42,7 @@ button:hover {
background-color: transparent;
margin-left: -75px;
margin-right: -20px;
margin-top: 12px;
}

.pcr-app[data-theme=classic] {
Expand Down Expand Up @@ -80,4 +83,22 @@ input[type="radio"]+label img {

input[type="radio"]+label img:hover {
transform: scale(1.1);
}
}

// media queries (btn is not opening & closing color picker)
// @media (max-width: 1300px) {
// .pcr-button {
// display: block;
// }

// .pcr-app {
// background-color: white;
// margin-left: 75px;
// margin-right: 20px;
// margin-bottom: 20px;
// }

// .pcr-app {
// padding: 20px
// }
// }

0 comments on commit 67b1d53

Please sign in to comment.