21 lines
498 B
CSS
21 lines
498 B
CSS
.hamburger-btn {
|
|
align-self: flex-start;
|
|
width: 44px;
|
|
height: 44px;
|
|
border-radius: 14px;
|
|
background: white;
|
|
border: none;
|
|
box-shadow: 0 2px 10px rgba(180, 80, 80, 0.12);
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
color: rosybrown;
|
|
cursor: pointer;
|
|
margin-bottom: 28px;
|
|
transition: box-shadow 0.2s, transform 0.15s;
|
|
|
|
&:active {
|
|
transform: scale(0.94);
|
|
box-shadow: 0 1px 5px rgba(180, 80, 80, 0.1);
|
|
}
|
|
} |