diff --git a/frontend_nuxt/components/PostPoll.vue b/frontend_nuxt/components/PostPoll.vue index a6e7832ac..2f021907e 100644 --- a/frontend_nuxt/components/PostPoll.vue +++ b/frontend_nuxt/components/PostPoll.vue @@ -38,6 +38,14 @@ {{ opt }} + +
+
+ + 该投票为多选 +
+
加入投票
+
@@ -204,6 +212,7 @@ const voteOption = async (idx) => { flex-direction: column; overflow-y: auto; flex: 4; + border-right: 1px solid var(--normal-border-color); } .poll-info { @@ -265,6 +274,9 @@ const voteOption = async (idx) => { .poll-left-time { display: flex; flex-direction: row; + align-items: center; + justify-content: center; + gap: 5px; } .poll-left-time-title { @@ -303,6 +315,34 @@ const voteOption = async (idx) => { color: var(--text-color); } +.multi-selection-container { + padding: 20px 15px 20px 5px; + display: flex; + flex-direction: row; + justify-content: space-between; +} + +.multi-selection-title { + font-size: 13px; + color: var(--text-color); +} + +.info-icon { + margin-right: 5px; +} + +.join-poll-button { + padding: 5px 10px; + background-color: var(--primary-color); + color: white; + border-radius: 8px; + cursor: pointer; +} + +.join-poll-button:hover { + background-color: var(--primary-color-hover); +} + .poll-participants { display: flex; flex-wrap: wrap;