Migration complete
This commit is contained in:
@@ -29,6 +29,7 @@
|
||||
background-color: var(--bg2);
|
||||
border: 1px solid var(--border);
|
||||
display: flex;
|
||||
min-width: 0;
|
||||
flex-direction: column;
|
||||
transition: transform 0.2s, border-color 0.2s;
|
||||
cursor: pointer;
|
||||
@@ -41,6 +42,7 @@
|
||||
.entry-cover-wrapper {
|
||||
position: relative;
|
||||
aspect-ratio: 4/3;
|
||||
min-width: 0;
|
||||
background-color: var(--bg);
|
||||
border-bottom: 1px solid var(--border);
|
||||
display: flex;
|
||||
@@ -80,6 +82,7 @@
|
||||
font-size: 1.1rem;
|
||||
margin-bottom: 5px;
|
||||
line-height: 1.3;
|
||||
word-wrap: break-word;
|
||||
}
|
||||
|
||||
.entry-card-author {
|
||||
@@ -97,3 +100,83 @@
|
||||
align-items: center;
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 1024px) {
|
||||
.stats-grid {
|
||||
grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
|
||||
gap: 15px;
|
||||
margin-bottom: 25px;
|
||||
}
|
||||
|
||||
.stat-card {
|
||||
padding: 15px;
|
||||
gap: 12px;
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 768px) {
|
||||
.stats-grid {
|
||||
grid-template-columns: repeat(2, 1fr);
|
||||
gap: 12px;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
|
||||
.stat-card {
|
||||
padding: 12px;
|
||||
gap: 10px;
|
||||
font-size: 0.9rem;
|
||||
}
|
||||
|
||||
.stat-card i {
|
||||
width: 28px;
|
||||
height: 28px;
|
||||
}
|
||||
|
||||
.entry-card-info {
|
||||
padding: 12px;
|
||||
}
|
||||
|
||||
.entry-card-title {
|
||||
font-size: 0.95rem;
|
||||
margin-bottom: 4px;
|
||||
}
|
||||
|
||||
.entry-card-author {
|
||||
font-size: 0.8rem;
|
||||
margin-bottom: 8px;
|
||||
}
|
||||
|
||||
.entry-card-meta {
|
||||
font-size: 0.75rem;
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 600px) {
|
||||
.stats-grid {
|
||||
grid-template-columns: 1fr;
|
||||
gap: 10px;
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
|
||||
.stat-card {
|
||||
padding: 10px;
|
||||
flex-direction: row;
|
||||
}
|
||||
|
||||
.entry-card {
|
||||
&:hover {
|
||||
transform: none;
|
||||
}
|
||||
}
|
||||
|
||||
.entry-card-title {
|
||||
font-size: 0.9rem;
|
||||
}
|
||||
|
||||
.entry-badge {
|
||||
top: 5px;
|
||||
right: 5px;
|
||||
padding: 3px 6px;
|
||||
font-size: 0.65rem;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -146,6 +146,7 @@
|
||||
|
||||
.breadcrumb {
|
||||
margin-bottom: 15px;
|
||||
flex-shrink: 0;
|
||||
}
|
||||
|
||||
/* PAGE */
|
||||
@@ -155,6 +156,7 @@
|
||||
font-weight: 300;
|
||||
margin-bottom: 20px;
|
||||
color: var(--text);
|
||||
flex-shrink: 0;
|
||||
}
|
||||
|
||||
/* TEXTS */
|
||||
@@ -193,3 +195,88 @@
|
||||
border: none;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
@media (max-width: 768px) {
|
||||
.btn {
|
||||
padding: 7px 12px;
|
||||
font-size: 0.85rem;
|
||||
gap: 6px;
|
||||
}
|
||||
|
||||
.block {
|
||||
padding: 15px;
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
|
||||
.block-header {
|
||||
font-size: 1.05rem;
|
||||
margin-bottom: 12px;
|
||||
padding-bottom: 8px;
|
||||
}
|
||||
|
||||
.page-title {
|
||||
font-size: 1.5rem;
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
|
||||
.content-title {
|
||||
margin: 20px 0 12px 0;
|
||||
padding-left: 8px;
|
||||
}
|
||||
|
||||
.quote {
|
||||
padding: 12px;
|
||||
margin-top: 20px;
|
||||
font-size: 0.95rem;
|
||||
}
|
||||
|
||||
.whisper {
|
||||
margin-bottom: 12px;
|
||||
font-size: 0.9rem;
|
||||
}
|
||||
|
||||
.breadcrumb {
|
||||
font-size: 0.85rem;
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 600px) {
|
||||
.btn {
|
||||
padding: 6px 10px;
|
||||
font-size: 0.8rem;
|
||||
gap: 4px;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.btn.primary, .btn.danger, .btn.success {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.block {
|
||||
padding: 12px;
|
||||
margin-bottom: 12px;
|
||||
}
|
||||
|
||||
.block-header {
|
||||
font-size: 0.95rem;
|
||||
margin-bottom: 10px;
|
||||
padding-bottom: 6px;
|
||||
}
|
||||
|
||||
.page-title {
|
||||
font-size: 1.2rem;
|
||||
margin-bottom: 12px;
|
||||
}
|
||||
|
||||
.badge {
|
||||
padding: 2px 6px;
|
||||
font-size: 0.7rem;
|
||||
}
|
||||
|
||||
.topbar-badge {
|
||||
min-width: 16px;
|
||||
height: 16px;
|
||||
padding: 0 3px;
|
||||
font-size: 0.6rem;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -259,6 +259,10 @@
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.database-wrapper {
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.database-filters {
|
||||
width: 100%;
|
||||
display: grid;
|
||||
@@ -275,19 +279,63 @@
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 768px) {
|
||||
.database-search {
|
||||
gap: 8px;
|
||||
margin-bottom: 15px;
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
|
||||
.database-wrapper {
|
||||
flex-direction: column;
|
||||
gap: 15px;
|
||||
}
|
||||
|
||||
.database-filters {
|
||||
width: 100%;
|
||||
grid-template-columns: 1fr;
|
||||
order: -1;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
.database-filter-group {
|
||||
padding: 12px 0;
|
||||
}
|
||||
|
||||
.grid-entries {
|
||||
grid-template-columns: repeat(3, 1fr);
|
||||
gap: 15px;
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 600px) {
|
||||
.database-search {
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.database-filters {
|
||||
grid-template-columns: 1fr;
|
||||
}
|
||||
|
||||
.grid-entries {
|
||||
grid-template-columns: repeat(2, 1fr);
|
||||
gap: 12px;
|
||||
}
|
||||
|
||||
.database-filter-group {
|
||||
padding: 10px 0;
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 420px) {
|
||||
.grid-entries {
|
||||
grid-template-columns: 1fr;
|
||||
gap: 10px;
|
||||
}
|
||||
|
||||
.database-search input {
|
||||
font-size: 0.85rem;
|
||||
padding: 6px 8px;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -93,7 +93,7 @@
|
||||
font-weight: 600;
|
||||
color: var(--text);
|
||||
margin-bottom: 6px;
|
||||
white-space: nowrap;
|
||||
white-space: normal;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
}
|
||||
@@ -158,3 +158,103 @@
|
||||
white-space: nowrap;
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 768px) {
|
||||
.drafts-count {
|
||||
font-size: 0.8rem;
|
||||
margin-bottom: 12px;
|
||||
padding-bottom: 8px;
|
||||
}
|
||||
|
||||
.drafts-item {
|
||||
gap: 15px;
|
||||
padding: 15px;
|
||||
}
|
||||
|
||||
.drafts-cover {
|
||||
width: 70px;
|
||||
height: 70px;
|
||||
}
|
||||
|
||||
.drafts-top {
|
||||
gap: 12px;
|
||||
}
|
||||
|
||||
.drafts-title {
|
||||
font-size: 0.95rem;
|
||||
}
|
||||
|
||||
.drafts-meta {
|
||||
font-size: 0.8rem;
|
||||
}
|
||||
|
||||
.drafts-actions {
|
||||
gap: 6px;
|
||||
}
|
||||
|
||||
.drafts-actions .btn {
|
||||
padding: 6px 10px;
|
||||
font-size: 0.8rem;
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 600px) {
|
||||
.drafts-empty {
|
||||
padding: 60px 15px;
|
||||
gap: 12px;
|
||||
}
|
||||
|
||||
.drafts-empty h3 {
|
||||
font-size: 1rem;
|
||||
}
|
||||
|
||||
.drafts-empty p {
|
||||
font-size: 0.85rem;
|
||||
}
|
||||
|
||||
.drafts-item {
|
||||
flex-direction: column;
|
||||
gap: 12px;
|
||||
padding: 12px;
|
||||
}
|
||||
|
||||
.drafts-cover {
|
||||
width: 100%;
|
||||
height: 150px;
|
||||
}
|
||||
|
||||
.drafts-top {
|
||||
flex-direction: column;
|
||||
gap: 10px;
|
||||
}
|
||||
|
||||
.drafts-title {
|
||||
font-size: 0.9rem;
|
||||
}
|
||||
|
||||
.drafts-meta {
|
||||
font-size: 0.75rem;
|
||||
}
|
||||
|
||||
.drafts-progress {
|
||||
flex-direction: column;
|
||||
gap: 8px;
|
||||
}
|
||||
|
||||
.drafts-progress-bar {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.drafts-actions {
|
||||
flex-direction: row;
|
||||
gap: 6px;
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
|
||||
.drafts-actions .btn {
|
||||
flex: 1;
|
||||
min-width: 80px;
|
||||
padding: 5px 8px;
|
||||
font-size: 0.75rem;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -508,6 +508,17 @@
|
||||
flex-direction: row;
|
||||
gap: 15px;
|
||||
}
|
||||
|
||||
@media (max-width: 600px) {
|
||||
.upload-item-actions {
|
||||
flex-direction: column;
|
||||
gap: 8px;
|
||||
}
|
||||
|
||||
.upload-item-actions .btn {
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
.file-state-icon { width: 18px; height: 18px; }
|
||||
.file-state-icon--public { color: var(--success); }
|
||||
.file-state-icon--private { color: var(--text2); }
|
||||
@@ -613,3 +624,86 @@
|
||||
.game-selector-platform-only {
|
||||
grid-column: span 1;
|
||||
}
|
||||
|
||||
@media (max-width: 768px) {
|
||||
.form-group.level {
|
||||
padding: 20px;
|
||||
margin-bottom: 25px;
|
||||
}
|
||||
|
||||
.form-group-title {
|
||||
font-size: 1rem;
|
||||
margin-bottom: 15px;
|
||||
padding-bottom: 8px;
|
||||
}
|
||||
|
||||
.form-group label, .form-label {
|
||||
margin-bottom: 6px;
|
||||
font-size: 0.9rem;
|
||||
}
|
||||
|
||||
.form-input, .form-select, .form-textarea, .form-field {
|
||||
padding: 8px 10px;
|
||||
font-size: 0.9rem;
|
||||
}
|
||||
|
||||
.form-textarea {
|
||||
min-height: 100px;
|
||||
}
|
||||
|
||||
.game-selector-mode {
|
||||
flex-direction: column;
|
||||
gap: 0;
|
||||
}
|
||||
|
||||
.game-selector-mode-btn {
|
||||
padding: 10px 12px;
|
||||
border-right: none;
|
||||
border-bottom: 1px solid var(--border);
|
||||
}
|
||||
|
||||
.game-selector-mode-btn:last-child {
|
||||
border-bottom: none;
|
||||
}
|
||||
|
||||
.submit, .submit-level, .main-image-grid {
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.grid-hashes {
|
||||
grid-template-columns: 1fr;
|
||||
}
|
||||
|
||||
.hash-first {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 600px) {
|
||||
.form-group {
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
|
||||
.form-group.level {
|
||||
padding: 15px;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
|
||||
.form-group-title {
|
||||
font-size: 0.95rem;
|
||||
margin-bottom: 12px;
|
||||
}
|
||||
|
||||
.form-group label, .form-label {
|
||||
font-size: 0.85rem;
|
||||
}
|
||||
|
||||
.form-input, .form-select, .form-textarea, .form-field {
|
||||
padding: 6px 8px;
|
||||
font-size: 0.85rem;
|
||||
}
|
||||
|
||||
.form-error-text {
|
||||
font-size: 0.8rem;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,9 +1,10 @@
|
||||
.hovercard-overlay {
|
||||
position: absolute;
|
||||
z-index: 2000;
|
||||
position: fixed;
|
||||
z-index: 3500;
|
||||
background-color: var(--bg2);
|
||||
border: 1px solid var(--border);
|
||||
box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
|
||||
pointer-events: auto;
|
||||
}
|
||||
|
||||
.hovercard-overlay-loading {
|
||||
@@ -117,3 +118,35 @@
|
||||
justify-content: center;
|
||||
font-size: 0.82rem;
|
||||
}
|
||||
|
||||
@media (max-width: 768px) {
|
||||
.hovercard {
|
||||
width: 260px;
|
||||
}
|
||||
|
||||
.hovercard-actions {
|
||||
gap: 6px;
|
||||
}
|
||||
|
||||
.hovercard-actions .btn {
|
||||
font-size: 0.75rem;
|
||||
padding: 6px 8px;
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 600px) {
|
||||
.hovercard {
|
||||
width: calc(100vw - 40px);
|
||||
max-width: 280px;
|
||||
}
|
||||
|
||||
.hovercard-actions {
|
||||
flex-direction: column;
|
||||
gap: 6px;
|
||||
}
|
||||
|
||||
.hovercard-actions .btn {
|
||||
width: 100%;
|
||||
justify-content: center;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -547,3 +547,128 @@
|
||||
padding: 14px 0 4px;
|
||||
border-top: 1px solid var(--border);
|
||||
}
|
||||
|
||||
@media (max-width: 1024px) {
|
||||
.modcp-wrapper {
|
||||
min-height: auto;
|
||||
}
|
||||
|
||||
.modcp-sidebar {
|
||||
width: 200px;
|
||||
margin-right: 10px;
|
||||
}
|
||||
|
||||
.modcp-content {
|
||||
padding: 20px;
|
||||
}
|
||||
|
||||
.modcp-page-title {
|
||||
font-size: 1.15rem;
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 768px) {
|
||||
.modcp-wrapper {
|
||||
flex-direction: column;
|
||||
gap: 0;
|
||||
}
|
||||
|
||||
.modcp-sidebar {
|
||||
width: 100%;
|
||||
flex-shrink: 1;
|
||||
position: relative;
|
||||
top: auto;
|
||||
align-self: auto;
|
||||
margin-right: 0;
|
||||
margin-bottom: 15px;
|
||||
border: 1px solid var(--border);
|
||||
max-height: 300px;
|
||||
overflow-y: auto;
|
||||
}
|
||||
|
||||
.modcp-sidebar-header {
|
||||
padding: 12px 14px;
|
||||
font-size: 0.8rem;
|
||||
}
|
||||
|
||||
.modcp-nav-label {
|
||||
padding: 6px 14px 3px;
|
||||
font-size: 0.65rem;
|
||||
}
|
||||
|
||||
.modcp-nav-item {
|
||||
padding: 6px 14px;
|
||||
font-size: 0.8rem;
|
||||
gap: 8px;
|
||||
}
|
||||
|
||||
.modcp-content {
|
||||
padding: 15px;
|
||||
}
|
||||
|
||||
.modcp-page-title {
|
||||
font-size: 1rem;
|
||||
margin-bottom: 12px;
|
||||
}
|
||||
|
||||
.modcp-page-actions {
|
||||
flex-direction: row;
|
||||
gap: 8px;
|
||||
}
|
||||
|
||||
.modcp-table {
|
||||
font-size: 0.85rem;
|
||||
}
|
||||
|
||||
.modcp-table th, .modcp-table td {
|
||||
padding: 8px;
|
||||
}
|
||||
|
||||
.modcp-table tbody tr {
|
||||
height: auto;
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 600px) {
|
||||
.modcp-sidebar {
|
||||
max-height: 200px;
|
||||
}
|
||||
|
||||
.modcp-sidebar-header {
|
||||
padding: 10px 12px;
|
||||
font-size: 0.75rem;
|
||||
}
|
||||
|
||||
.modcp-nav-item {
|
||||
padding: 5px 12px;
|
||||
font-size: 0.75rem;
|
||||
}
|
||||
|
||||
.modcp-content {
|
||||
padding: 12px;
|
||||
}
|
||||
|
||||
.modcp-page-title {
|
||||
font-size: 0.95rem;
|
||||
}
|
||||
|
||||
.modcp-table {
|
||||
font-size: 0.8rem;
|
||||
overflow-x: auto;
|
||||
display: block;
|
||||
}
|
||||
|
||||
.modcp-table th, .modcp-table td {
|
||||
padding: 6px;
|
||||
}
|
||||
|
||||
.log-diff-key {
|
||||
width: auto;
|
||||
white-space: normal;
|
||||
}
|
||||
|
||||
.log-raw {
|
||||
font-size: 0.7rem;
|
||||
padding: 8px 10px;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -21,6 +21,28 @@
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 768px) {
|
||||
.notifications, .conversations {
|
||||
position: fixed;
|
||||
width: calc(100% - 30px);
|
||||
max-width: 340px;
|
||||
right: 15px;
|
||||
top: auto;
|
||||
bottom: 15px;
|
||||
max-height: calc(100vh - 130px);
|
||||
z-index: 3000 !important;
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 600px) {
|
||||
.notifications, .conversations {
|
||||
width: calc(100% - 20px);
|
||||
right: 10px;
|
||||
bottom: 10px;
|
||||
max-width: 100%;
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes dropdown-enter {
|
||||
from { opacity: 0; transform: translateY(-6px); }
|
||||
to { opacity: 1; transform: translateY(0); }
|
||||
|
||||
@@ -185,3 +185,82 @@
|
||||
border: 1px solid var(--border);
|
||||
}
|
||||
|
||||
@media (max-width: 768px) {
|
||||
.queue-item {
|
||||
padding: 15px;
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
|
||||
.queue-item-header {
|
||||
flex-direction: column;
|
||||
gap: 12px;
|
||||
}
|
||||
|
||||
.queue-item-title {
|
||||
font-size: 1rem;
|
||||
}
|
||||
|
||||
.queue-item-meta {
|
||||
font-size: 0.8rem;
|
||||
}
|
||||
|
||||
.queue-item-actions-header {
|
||||
gap: 6px;
|
||||
flex-wrap: wrap;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.timeline {
|
||||
font-size: 0.85rem;
|
||||
}
|
||||
|
||||
.timeline-container {
|
||||
padding: 12px 15px;
|
||||
}
|
||||
|
||||
.queue-mod-actions {
|
||||
flex-direction: column;
|
||||
gap: 6px;
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 600px) {
|
||||
.queue-empty {
|
||||
padding: 60px 15px;
|
||||
font-size: 0.9rem;
|
||||
}
|
||||
|
||||
.queue-item {
|
||||
padding: 12px;
|
||||
border-left-width: 3px;
|
||||
}
|
||||
|
||||
.queue-item-title {
|
||||
font-size: 0.95rem;
|
||||
}
|
||||
|
||||
.queue-item-meta {
|
||||
font-size: 0.75rem;
|
||||
}
|
||||
|
||||
.queue-item-actions-header {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.timeline {
|
||||
font-size: 0.8rem;
|
||||
}
|
||||
|
||||
.timeline-container {
|
||||
padding: 10px 12px;
|
||||
}
|
||||
|
||||
.queue-mod-actions {
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.queue-mod-actions .btn {
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -9,6 +9,29 @@
|
||||
z-index: 2000;
|
||||
}
|
||||
|
||||
@media (max-width: 768px) {
|
||||
.settings-dropdown {
|
||||
position: fixed;
|
||||
width: calc(100% - 30px);
|
||||
max-width: 240px;
|
||||
right: 15px;
|
||||
top: auto;
|
||||
bottom: 15px;
|
||||
max-height: calc(100vh - 130px);
|
||||
overflow-y: auto;
|
||||
z-index: 3000 !important;
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 600px) {
|
||||
.settings-dropdown {
|
||||
width: calc(100% - 20px);
|
||||
right: 10px;
|
||||
bottom: 10px;
|
||||
max-width: 100%;
|
||||
}
|
||||
}
|
||||
|
||||
.settings-header {
|
||||
padding: 12px 16px;
|
||||
border-bottom: 1px solid var(--border);
|
||||
|
||||
@@ -15,6 +15,62 @@
|
||||
.patcher-grid {
|
||||
grid-template-columns: 1fr;
|
||||
}
|
||||
|
||||
.patcher-container {
|
||||
padding: 20px;
|
||||
}
|
||||
|
||||
.patcher-dropzone {
|
||||
padding: 40px 15px;
|
||||
gap: 12px;
|
||||
}
|
||||
|
||||
.embed-patch-box {
|
||||
padding: 20px;
|
||||
height: auto;
|
||||
}
|
||||
|
||||
.embed-patch-box-icon {
|
||||
gap: 12px;
|
||||
}
|
||||
|
||||
.embed-patch-box-icon-block {
|
||||
width: 40px;
|
||||
height: 40px;
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 600px) {
|
||||
.patcher-container {
|
||||
padding: 15px;
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
|
||||
.patcher-grid {
|
||||
gap: 15px;
|
||||
}
|
||||
|
||||
.patcher-dropzone {
|
||||
padding: 30px 12px;
|
||||
gap: 10px;
|
||||
font-size: 0.9rem;
|
||||
}
|
||||
|
||||
.patcher-status-box {
|
||||
margin-top: 15px;
|
||||
padding: 12px;
|
||||
font-size: 0.9rem;
|
||||
}
|
||||
|
||||
.embed-patch-box {
|
||||
padding: 15px;
|
||||
gap: 12px;
|
||||
}
|
||||
|
||||
.btn:disabled {
|
||||
padding: 6px 8px;
|
||||
font-size: 0.8rem;
|
||||
}
|
||||
}
|
||||
|
||||
.patcher-dropzone {
|
||||
|
||||
Reference in New Issue
Block a user