Skip to content

Commit 672c9d9

Browse files
committed
closer "more" underline
1 parent e7046a3 commit 672c9d9

1 file changed

Lines changed: 11 additions & 1 deletion

File tree

src/components/monthview/MonthWeek.vue

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -232,16 +232,26 @@ function openWeek(day: DateTime) {
232232
padding-bottom: 0.2rem;
233233
234234
.more-events-content {
235+
position: relative;
235236
max-width: 100%;
236237
display: flex;
237238
align-items: center;
238239
gap: 0.1rem;
239240
overflow: hidden;
240-
border-bottom: 1px solid currentColor;
241241
white-space: nowrap;
242242
cursor: pointer;
243243
pointer-events: auto;
244244
245+
&::after {
246+
content: '';
247+
position: absolute;
248+
right: 0;
249+
bottom: 1px;
250+
left: 0;
251+
height: 1px;
252+
background: currentColor;
253+
}
254+
245255
svg {
246256
width: 0.8rem;
247257
height: 0.8rem;

0 commit comments

Comments
 (0)