mirror of
https://github.com/shlinkio/shlink-web-client.git
synced 2024-12-23 17:40:23 +03:00
First minor improvements to the visits table responsiveness
This commit is contained in:
parent
fad0bf1c9d
commit
54fec79945
2 changed files with 5 additions and 3 deletions
|
@ -88,7 +88,7 @@ const VisitsTable = ({
|
||||||
}, [ searchTerm ]);
|
}, [ searchTerm ]);
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<table className="table table-striped table-bordered table-hover table-sm visits-table">
|
<table className="table table-striped table-bordered table-hover table-sm table-responsive-sm visits-table">
|
||||||
<thead className="visits-table__header">
|
<thead className="visits-table__header">
|
||||||
<tr>
|
<tr>
|
||||||
<th
|
<th
|
||||||
|
|
|
@ -12,9 +12,11 @@
|
||||||
|
|
||||||
@include sticky-cell();
|
@include sticky-cell();
|
||||||
|
|
||||||
|
@media (min-width: $mdMin) {
|
||||||
&.visits-table__sticky {
|
&.visits-table__sticky {
|
||||||
top: $headerHeight - 2px;
|
top: $headerHeight - 2px;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.visits-table__header-icon {
|
.visits-table__header-icon {
|
||||||
|
|
Loading…
Reference in a new issue