25 lines
276 B
CSS
25 lines
276 B
CSS
|
|
table {
|
|
column-width: auto;
|
|
color: lightgrey;
|
|
width: fit-content;
|
|
}
|
|
|
|
button {
|
|
width: max-content;
|
|
}
|
|
|
|
.signUpButton{
|
|
width: 30px;
|
|
}
|
|
|
|
.tdSignUp {
|
|
max-width: 400px;
|
|
width: fit-content;
|
|
}
|
|
|
|
|
|
.tdRole {
|
|
max-width: 500px;
|
|
width: fit-content;
|
|
}
|