10 lines
198 B
SCSS
10 lines
198 B
SCSS
|
@mixin button_link() {
|
||
|
cursor: pointer;
|
||
|
background-color: transparent;
|
||
|
background-repeat: no-repeat;
|
||
|
border: none;
|
||
|
overflow: hidden;
|
||
|
outline: none;
|
||
|
border-radius: 5px;
|
||
|
}
|