12 lines
188 B
SCSS
12 lines
188 B
SCSS
.icon-btn {
|
|
background: transparent;
|
|
border: none;
|
|
padding: 10px;
|
|
transition: all 0.2s ease;
|
|
}
|
|
|
|
.icon-btn:hover {
|
|
background: rgba(255, 255, 255, 0.15);
|
|
border-radius: 20px;
|
|
}
|