mirror of
https://github.com/shlinkio/shlink-web-client.git
synced 2026-02-27 12:16:36 +00:00
41 lines
642 B
SCSS
41 lines
642 B
SCSS
@import '../utils/base';
|
|
@import '../utils/mixins/sticky-cell';
|
|
|
|
.visits-table {
|
|
margin: 1.5rem 0 0;
|
|
position: relative;
|
|
}
|
|
|
|
.visits-table__header-cell {
|
|
cursor: pointer;
|
|
margin-bottom: 55px;
|
|
|
|
@include sticky-cell();
|
|
|
|
&.visits-table__sticky {
|
|
top: $headerHeight - 2px;
|
|
}
|
|
}
|
|
|
|
.visits-table__header-cell--no-action {
|
|
cursor: auto;
|
|
text-align: center;
|
|
}
|
|
|
|
.visits-table__header-icon {
|
|
float: right;
|
|
margin-top: 3px;
|
|
}
|
|
|
|
.visits-table__footer-cell.visits-table__footer-cell {
|
|
bottom: 0;
|
|
margin-top: 34px;
|
|
padding: .5rem;
|
|
|
|
@include sticky-cell();
|
|
}
|
|
|
|
.visits-table__sticky.visits-table__sticky {
|
|
position: sticky;
|
|
}
|