1234567891011121314151617181920212223242526272829303132 |
- .slots-box {
- height: 100%;
- }
- .slots-container {
- height: calc(100% - 5rem);
- overflow: auto;
- padding-top: 0.5rem;
- position: relative;
- }
- .level-row {
- padding: 1rem 1.5rem 0 1.5rem;
- display: flex;
- font-size: 1.25rem;
- font-weight: 600;
- .checkboxes {
- margin-left: 1rem;
- display: flex;
- align-items: center;
- gap: 0.5rem;
- }
- }
- .modifier-container {
- position: absolute;
- width: 100%;
- bottom: 1.5rem;
- display: flex;
- justify-content: space-evenly;
- }
|