iachat/app/javascript/dashboard/assets/scss/widgets/_woot-tables.scss
Pranav Raj S 985b3f3bfc
chore: Reset the base font-size to 16px instead of 10px (#7455)
Co-authored-by: Nithin David Thomas <1277421+nithindavid@users.noreply.github.com>
2023-07-04 03:23:00 +05:30

61 lines
911 B
SCSS

table {
border-spacing: 0;
font-size: var(--font-size-small);
thead {
th {
font-weight: var(--font-weight-bold);
text-align: left;
text-transform: uppercase;
}
}
tbody {
tr {
border-bottom: 1px solid var(--color-border-light);
}
td {
padding: var(--space-small);
}
}
}
.woot-table {
tr {
.show-if-hover {
opacity: 0;
transition: opacity 0.2s $swift-ease-out-function;
}
&:hover {
.show-if-hover {
opacity: 1;
}
}
}
.agent-name {
display: block;
font-weight: var(--font-weight-medium);
text-transform: capitalize;
}
.woot-thumbnail {
border-radius: 50%;
height: 3.125rem;
width: 3.125rem;
}
.button-wrapper {
@include flex-align(left, null);
@include flex;
flex-direction: row;
min-width: 12.5rem;
}
.button {
margin: 0;
}
}