$bg-color-1: rgb(52, 116, 255); $bg-cell-disabled: rgba(237, 54, 54, 0.3); #minted-modal-container { position: fixed; top: 0; left: 0; background-color: rgb(0, 0, 0, 0.8); height: 100vh; width: 100vw; overflow: auto; white-space: nowrap; } #minted-modal-container{ #minted-modal { max-width: 1600px; margin: auto; } #minted-grid-container { padding: 1rem; display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.5rem; } .card-cell { display: inline-block; background-color: $bg-color-1; /* padding: 1rem; */ margin: 0.5rem; font-weight: bold; font-size: 1.1rem; width: 2.5rem; height: 2.2rem; border-radius: 6px; box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.589), -1px -1px 5px rgba(0, 0, 0, 0.562), -5px -5px 10px rgba(0, 0, 0, 0.589), -1px -1px 5px rgba(0, 0, 0, 0.562); } .card-cell.disabled { background: $bg-cell-disabled; cursor: default; } .card-cell:not(.disabled):hover { cursor: pointer; filter: brightness(95%); } #minted-submit-container { text-align: center; } #minted-submit-container button { background-color: $bg-color-1; padding: 0.5rem 1rem; font-size: 1.5rem; border-radius: 8px; border-color: darken($bg-color-1, 20%); &:hover { cursor: pointer; filter: brightness(90%); } } .text-center { text-align: center; } .d-flex { display: flex; } .flex-column { flex-direction: column; } .justify-content-center { justify-content: center; } .cell-selected { background: linear-gradient(46deg, #810481, rgb(239 114 239)); } .mb-1 { margin-bottom: 2.5rem; } .me-1 { margin-right: 2.5rem; } }