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

Commit

Permalink
Fix card text position
Browse files Browse the repository at this point in the history
  • Loading branch information
dyakovri committed Oct 16, 2022
1 parent 8fdb628 commit d7e0d65
Showing 1 changed file with 15 additions and 12 deletions.
27 changes: 15 additions & 12 deletions src/components/EventRow.vue
Original file line number Diff line number Diff line change
Expand Up @@ -69,29 +69,32 @@ export default {
}
.noselect {
-webkit-touch-callout: none; /* iOS Safari */
-webkit-user-select: none; /* Safari */
-khtml-user-select: none; /* Konqueror HTML */
-moz-user-select: none; /* Old versions of Firefox */
-ms-user-select: none; /* Internet Explorer/Edge */
user-select: none; /* Non-prefixed version, currently
-webkit-user-select: none; /* Safari */
-khtml-user-select: none; /* Konqueror HTML */
-moz-user-select: none; /* Old versions of Firefox */
-ms-user-select: none; /* Internet Explorer/Edge */
user-select: none; /* Non-prefixed version, currently
supported by Chrome, Edge, Opera and Firefox */
cursor: default;
}
p {
margin: 4px 0;
}
.time {
width: 50px;
font-size: 16px;
flex: 0 0 50px;
margin: 0;
}
div.time,
div.info {
display: flex;
flex-flow: column nowrap;
justify-content: center;
min-width: 0;
font-size: 16px;
height: 100%;
}
div.time {
width: 50px;
flex: 0 0 50px;
}
div.info {
min-width: 0;
}
.info > p {
width: 100%;
overflow: hidden;
Expand Down

0 comments on commit d7e0d65

Please sign in to comment.