21 lines
296 B
SCSS
21 lines
296 B
SCSS
.openingChevron {
|
|
height: 3rem;
|
|
width: 3rem;
|
|
background-color: transparent;
|
|
border: transparent;
|
|
}
|
|
|
|
.openingChevron:hover {
|
|
svg {
|
|
color: rgb(117, 117, 117);
|
|
transition: color 0.3s;
|
|
}
|
|
}
|
|
|
|
.page {
|
|
text-align: center;
|
|
margin-bottom: 8rem;
|
|
width: 47rem;
|
|
max-width: 100%;
|
|
}
|