diff options
Diffstat (limited to 'app/src/styles/Dashboard.module.css')
-rw-r--r-- | app/src/styles/Dashboard.module.css | 50 |
1 files changed, 23 insertions, 27 deletions
diff --git a/app/src/styles/Dashboard.module.css b/app/src/styles/Dashboard.module.css index ef6b451..96ed919 100644 --- a/app/src/styles/Dashboard.module.css +++ b/app/src/styles/Dashboard.module.css @@ -5,13 +5,6 @@ body { background-color: #2c3338; } -#mainTable { - position: absolute; - top: 100px; - left: 50%; - transform: translateX(-50%); -} - table { margin: 0 auto; text-align: center; @@ -22,40 +15,29 @@ table { overflow: hidden; } -/* Center all sub tables */ -.logTableRow table { - margin: 0 auto; -} - -.logTableRow table { - width: 90%; -} - table th { background-color: #415eac; border: 2px solid #ccc; padding: 10px; } -.linkTableRow { - border: 2px solid #ccc; -} - table td { padding: 10px; } -.linkTableRow td { - padding: 20px; +.mainTable { + position: absolute; + top: 100px; + left: 50%; + transform: translateX(-50%); } -.logTableRow table td { - background-color: #3b4148; - padding: 10px; +.linkTableRow { + border: 2px solid #ccc; } -.logTableRow table tr { - border: 2px solid #ccc; +.linkTableRow td { + padding: 20px; } .linkButton { @@ -68,6 +50,20 @@ table td { border-radius: 5px; } +.logTableRow table { + margin: 0 auto; + width: 90%; +} + +.logTableRow table td { + background-color: #3b4148; + padding: 10px; +} + +.logTableRow table tr { + border: 2px solid #ccc; +} + .trashBin:hover { color: rgb(238, 86, 86); cursor: pointer; |