36 lines
603 B
SCSS
36 lines
603 B
SCSS
.icon-btn {
|
|
background: transparent;
|
|
border: none;
|
|
min-width: 80px;
|
|
min-height: 60px;
|
|
margin: 0px;
|
|
// display: flex;
|
|
// align-items: center;
|
|
// justify-content: center;
|
|
// transition: background 0.2s ease;
|
|
// padding: 5px;
|
|
// cursor: pointer;
|
|
}
|
|
|
|
.icon-btn:hover {
|
|
background: rgba(255, 255, 255, 0.15);
|
|
}
|
|
|
|
.icon-btn:hover .icon-text {
|
|
text-decoration: underline;
|
|
}
|
|
|
|
.icon {
|
|
font-family: "Symbols Nerd Font Mono";
|
|
font-size: 60px;
|
|
margin-left: -1rem;
|
|
margin-bottom: -1rem;
|
|
color: #ffffff;
|
|
}
|
|
|
|
.icon-text {
|
|
font-family: "sans";
|
|
font-size: 14px;
|
|
color: #dddddd;
|
|
}
|