style table header buttons

This commit is contained in:
Andrzej Stepien 2023-09-06 23:14:26 +02:00
parent 0dece24728
commit 260d655706
2 changed files with 5 additions and 0 deletions

View File

@ -12,6 +12,7 @@ table table{
line-height:1em; line-height:1em;
} }
td{ td{
padding: 1rem; padding: 1rem;
max-width: 30rem; max-width: 30rem;
@ -38,6 +39,7 @@ table table{
background-color: hsl(var(--color-1),var(--light)); background-color: hsl(var(--color-1),var(--light));
} }
.rowHeader button{ .rowHeader button{
font-weight: bold;
width:100%; width:100%;
min-width: max-content; min-width: max-content;
background-color: transparent; background-color: transparent;

View File

@ -51,4 +51,7 @@ html {
header{ header{
text-align: center; text-align: center;
} }
button:hover{
cursor:pointer;
}