13 lines
183 B
SCSS
13 lines
183 B
SCSS
.ui-add-button {
|
|
border: none;
|
|
padding: 4;
|
|
display: inline;
|
|
background: none;
|
|
font-weight: bold;
|
|
color: green;
|
|
cursor: pointer;
|
|
|
|
&:hover {
|
|
color: darkgreen;
|
|
}
|
|
}
|