mirror of
https://github.com/vercel/commerce.git
synced 2025-07-04 04:01:21 +00:00
26 lines
382 B
CSS
26 lines
382 B
CSS
.menuButton {
|
|
cursor: pointer;
|
|
height: 30px;
|
|
margin: 0 auto;
|
|
width: 30px;
|
|
}
|
|
|
|
.menuButton::after,
|
|
.menuButton::before {
|
|
background-color: #f4f4f4;
|
|
content: '';
|
|
height: 1px;
|
|
position: absolute;
|
|
top: 50%;
|
|
transition: transform 0.2s ease;
|
|
width: 30px;
|
|
}
|
|
|
|
.menuButton::after {
|
|
transform: translateY(5px);
|
|
}
|
|
|
|
.menuButton::before {
|
|
transform: translateY(-5px);
|
|
}
|