mirror of
https://github.com/shlinkio/shlink-web-client.git
synced 2026-03-15 20:13:48 +00:00
Extract shlink-web-component outside of src folder
This commit is contained in:
39
shlink-web-component/visits/VisitsTable.scss
Normal file
39
shlink-web-component/visits/VisitsTable.scss
Normal file
@@ -0,0 +1,39 @@
|
||||
@import '../../src/utils/base';
|
||||
@import '../../src/utils/mixins/sticky-cell';
|
||||
|
||||
.visits-table {
|
||||
margin: 1.5rem 0 0;
|
||||
position: relative;
|
||||
background-color: var(--primary-color);
|
||||
overflow-y: hidden;
|
||||
}
|
||||
|
||||
.visits-table__header-cell {
|
||||
cursor: pointer;
|
||||
margin-bottom: 55px;
|
||||
|
||||
@include sticky-cell();
|
||||
|
||||
@media (min-width: $mdMin) {
|
||||
&.visits-table__sticky {
|
||||
top: $headerHeight + 40px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.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;
|
||||
}
|
||||
Reference in New Issue
Block a user