Skip to content

Commit cbcb336

Browse files
committed
fix: display issues in frontend
1 parent b132680 commit cbcb336

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

frontend/src/components/SubmissionHeatmap.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ function hideTooltip () {
159159

160160
<template>
161161
<div class="submission-heatmap">
162-
<div class="max-w-full overflow-scroll" style="direction: rtl;">
162+
<div class="max-w-full overflow-x-auto" style="direction: rtl;">
163163
<svg
164164
class="mx-auto" :width="svgWidth" :height="svgHeight" xmlns="http://www.w3.org/2000/svg"
165165
style="direction: ltr;"

frontend/src/views/Admin/TagManager.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ onBeforeMount(fetch)
151151
</h3>
152152
<div class="flex flex-wrap gap-2 tags-group-items">
153153
<ProblemTag
154-
v-for="tagItem in tagsGroupByColor[color]" :key="tagItem.tagId" class="tag-item" size="large"
154+
v-for="tagItem in tagsGroupByColor[color]" :key="tagItem.tagId" class="cursor-pointer" size="large"
155155
:name="tagItem.name" :color="color" @click="openTagDetail(tagItem.tagId)"
156156
/>
157157
</div>

0 commit comments

Comments
 (0)