feature: admin-circle-list

This commit is contained in:
gaelle morin
2020-12-05 19:26:52 +01:00
parent 1f7dbe8bca
commit c8f393d652
9 changed files with 220 additions and 37 deletions

View File

@ -1,7 +1,28 @@
.table-wrapper {
overflow: auto;
position: relative;
width: 100%;
/* Bottom scrollbar */
overflow: auto;
height: auto;
-webkit-overflow-scrolling: touch;
-ms-overflow-style: none;
scrollbar-width: thin;
scrollbar-color: var(--color-heading) var(--color-grey);
&::-webkit-scrollbar-track {
background-color: var(--color-grey);
border-radius: 10px;
}
&::-webkit-scrollbar {
height: 5px;
}
&::-webkit-scrollbar-thumb {
background-color: var(--color-heading);
border-radius: 10px;
}
.table {
border-collapse: collapse;