Skip to content

Commit

Permalink
fix: responsividade tela admin
Browse files Browse the repository at this point in the history
  • Loading branch information
ialexanderbrito committed Apr 12, 2022
1 parent 2745e4a commit d7c2d66
Showing 1 changed file with 53 additions and 7 deletions.
60 changes: 53 additions & 7 deletions src/pages/Admin/Admin.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,8 @@
}

.titleHome {
margin-top: 24px;
margin-bottom: 24px;
font-weight: bold;
color: var(--white);
margin-left: 18px;
margin-right: 18px;
font-size: 22px;
}

Expand Down Expand Up @@ -47,7 +43,7 @@

.containerBarber {
display: flex;
width: 25rem;
width: 23rem;
align-items: center;
justify-content: space-around;
}
Expand All @@ -57,8 +53,8 @@
background: var(--orange);
cursor: pointer;
border-radius: 10px;
width: 60px;
height: 60px;
width: 30px;
height: 30px;
align-items: center;
justify-content: center;

Expand All @@ -69,6 +65,25 @@
}

@media screen and (min-width: 839px) {
.home {
background: var(--background);
height: 100vh;
}

.container {
display: flex;
flex-direction: column;
align-items: center;
justify-content: flex-start;
background: var(--background);
}

.titleHome {
font-weight: bold;
color: var(--white);
font-size: 22px;
}

.titleContainer {
margin-top: 24px;
margin-bottom: 24px;
Expand All @@ -84,4 +99,35 @@

font-size: 18px;
}

.containerList {
display: flex;
width: 100%;
align-items: center;
justify-content: center;
flex-direction: column;
}

.containerBarber {
display: flex;
width: 25rem;
align-items: center;
justify-content: space-around;
}

.button {
border: none;
background: var(--orange);
cursor: pointer;
border-radius: 10px;
width: 45px;
height: 45px;
align-items: center;
justify-content: center;

&:hover {
filter: brightness(0.6);
transition: 0.4s;
}
}
}

0 comments on commit d7c2d66

Please sign in to comment.