17 lines
267 B
CSS
17 lines
267 B
CSS
.hamburger {
|
|
background: none;
|
|
border: none;
|
|
cursor: pointer;
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 0.5rem;
|
|
padding: 0;
|
|
}
|
|
|
|
.line {
|
|
background-color: var(--some-black-color, #1c1b1f);
|
|
border-radius: 0.8rem;
|
|
height: 0.2rem;
|
|
width: 2.5rem;
|
|
}
|