mirror of
https://github.com/DerTyp7/time-tracking.git
synced 2025-10-30 12:57:10 +01:00
added stuff
This commit is contained in:
35
frontend/src/css/components/table/table.scss
Normal file
35
frontend/src/css/components/table/table.scss
Normal file
@@ -0,0 +1,35 @@
|
||||
.table-container {
|
||||
height: 100%;
|
||||
width: 100%;
|
||||
white-space: nowrap;
|
||||
text-overflow: ellipsis;
|
||||
overflow-x: hidden;
|
||||
|
||||
table {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
margin-bottom: 50px;
|
||||
border-collapse: collapse;
|
||||
overflow-x: hidden;
|
||||
|
||||
tr {
|
||||
height: 40px;
|
||||
text-align: center;
|
||||
background-color: #323232;
|
||||
&:nth-child(even) {
|
||||
background-color: #1d1d1d;
|
||||
}
|
||||
|
||||
th {
|
||||
padding-top: 2px;
|
||||
padding-bottom: 2px;
|
||||
background-color: #131313;
|
||||
}
|
||||
|
||||
td {
|
||||
padding-top: 4px;
|
||||
padding-bottom: 4px;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user