33 lines
671 B
SCSS
33 lines
671 B
SCSS
.user-dashboard {
|
|
&.tickets {
|
|
.rowButtons {
|
|
a {
|
|
position: relative;
|
|
|
|
span {
|
|
background: transparent !important;
|
|
color: #fff !important;
|
|
display: inline-block !important;
|
|
padding: 0 !important;
|
|
}
|
|
|
|
i {
|
|
$size: 25px;
|
|
width: $size;
|
|
height: $size;
|
|
line-height: $size;
|
|
text-align: center;
|
|
font-family: sans-serif;
|
|
position: absolute;
|
|
top: -8px;
|
|
right: -10px;
|
|
font-size: 12px;
|
|
background: red;
|
|
color: #fff;
|
|
@include borderRadius(50%);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|