nakama/frontend/src/components/PostMenu.css

53 lines
905 B
CSS
Raw Normal View History

2025-11-03 20:35:01 +00:00
.menu-modal {
background: var(--bg-secondary);
border-radius: 16px 16px 0 0;
padding: 8px;
animation: slideUp 0.3s ease-out;
2025-11-03 21:47:57 +00:00
width: 100%;
2025-11-03 21:43:00 +00:00
max-width: 600px;
margin: 0 auto;
2025-11-03 20:35:01 +00:00
}
.menu-item {
width: 100%;
display: flex;
align-items: center;
gap: 12px;
padding: 16px;
background: transparent;
color: var(--text-primary);
font-size: 16px;
font-weight: 500;
border-radius: 12px;
transition: background 0.2s;
2025-11-03 21:43:00 +00:00
cursor: pointer;
border: none;
outline: none;
}
.menu-item svg {
stroke: currentColor;
2025-11-03 20:35:01 +00:00
}
.menu-item:active {
background: var(--bg-primary);
2025-11-03 21:43:00 +00:00
transform: scale(0.98);
2025-11-03 20:35:01 +00:00
}
.menu-item.danger {
color: #FF3B30;
}
.report-modal textarea {
width: 100%;
padding: 12px;
border: 1px solid var(--border-color);
border-radius: 12px;
background: var(--bg-primary);
color: var(--text-primary);
font-size: 15px;
line-height: 1.5;
resize: vertical;
}