fix: correct CSS syntax error in VideoPlayer

Fixed PostCSS parse error:
- Line 1452: Missing class selector before CSS rule
- Added .ms-mark-btn-wrap class selector
- Properly formatted CSS rule blocks
This commit is contained in:
2026-07-24 23:35:05 +08:00
parent cb7e1ba0ba
commit 9f667cf174

View File

@@ -1449,7 +1449,14 @@ onUnmounted(() => {
font-size: 11px;
font-weight: 500;
user-select: none;
} display: flex; align-items: center; gap: 10px; margin-top: 12px; flex-wrap: wrap; }
}
.ms-mark-btn-wrap {
display: flex;
align-items: center;
gap: 10px;
margin-top: 12px;
flex-wrap: wrap;
}
.ms-mark-btn { padding: 6px 14px; font-size: 12px; background: #34a853; border: none; border-radius: 6px; color: white; cursor: pointer; }
.ms-mark-btn:hover { background: #3cb85c; }
.ms-mark-btn.active { background: #ea4335; }