Skip to content
This repository was archived by the owner on Mar 26, 2023. It is now read-only.

Commit d7e0d65

Browse files
committed
Fix card text position
1 parent 8fdb628 commit d7e0d65

File tree

1 file changed

+15
-12
lines changed

1 file changed

+15
-12
lines changed

src/components/EventRow.vue

Lines changed: 15 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -69,29 +69,32 @@ export default {
6969
}
7070
.noselect {
7171
-webkit-touch-callout: none; /* iOS Safari */
72-
-webkit-user-select: none; /* Safari */
73-
-khtml-user-select: none; /* Konqueror HTML */
74-
-moz-user-select: none; /* Old versions of Firefox */
75-
-ms-user-select: none; /* Internet Explorer/Edge */
76-
user-select: none; /* Non-prefixed version, currently
72+
-webkit-user-select: none; /* Safari */
73+
-khtml-user-select: none; /* Konqueror HTML */
74+
-moz-user-select: none; /* Old versions of Firefox */
75+
-ms-user-select: none; /* Internet Explorer/Edge */
76+
user-select: none; /* Non-prefixed version, currently
7777
supported by Chrome, Edge, Opera and Firefox */
7878
cursor: default;
7979
}
8080
p {
81-
margin: 4px 0;
82-
}
83-
.time {
84-
width: 50px;
85-
font-size: 16px;
86-
flex: 0 0 50px;
81+
margin: 0;
8782
}
83+
div.time,
8884
div.info {
8985
display: flex;
9086
flex-flow: column nowrap;
9187
justify-content: center;
92-
min-width: 0;
88+
font-size: 16px;
9389
height: 100%;
9490
}
91+
div.time {
92+
width: 50px;
93+
flex: 0 0 50px;
94+
}
95+
div.info {
96+
min-width: 0;
97+
}
9598
.info > p {
9699
width: 100%;
97100
overflow: hidden;

0 commit comments

Comments
 (0)