Шаблон:таблицаролей/styles.css
| Строка 52: | Строка 52: | ||
padding: 3px; | padding: 3px; | ||
display: grid; | display: grid; | ||
grid-template-columns: repeat(5, | grid-template-columns: repeat(5, auto); | ||
gap: 5px; | gap: 5px; | ||
border-radius: 3px; | border-radius: 3px; | ||
justify-content: space-between; | |||
} | |||
.RoleTable-content_main > * { | |||
min-width: 0; | |||
max-width: calc((100% - 20px) / 5); | |||
} | } | ||
| Строка 60: | Строка 66: | ||
.RoleTable-content_secondary { | .RoleTable-content_secondary { | ||
display: grid; | display: grid; | ||
grid-template-columns: repeat(2, | grid-template-columns: repeat(2, auto); | ||
gap: 3px; | gap: 3px; | ||
margin-top: 3px; | margin-top: 3px; | ||
justify-content: space-between; | |||
} | |||
.RoleTable-content_secondary > * { | |||
min-width: 0; | |||
max-width: calc((100% - 3px) / 2); | |||
} | } | ||
| Строка 100: | Строка 112: | ||
.RoleTable-content_secondary { | .RoleTable-content_secondary { | ||
grid-template-columns: 1fr; | grid-template-columns: 1fr; | ||
} | |||
.RoleTable-content_main > *, | |||
.RoleTable-content_secondary > * { | |||
max-width: 100%; | |||
} | } | ||