Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
port PR 30338
extend .gitignore

Signed-off-by: julia.kirschenheuter <julia.kirschenheuter@nextcloud.com>
  • Loading branch information
JuliaKirschenheuter committed Feb 22, 2022
1 parent 63a560b commit ba69028
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 7 deletions.
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -104,3 +104,7 @@ dist

# TernJS port file
.tern-port

# Editor directories and files
.idea
.vscode
17 changes: 10 additions & 7 deletions src/CalendarAvailability.vue
Original file line number Diff line number Diff line change
Expand Up @@ -202,12 +202,12 @@ export default {

<style lang="scss" scoped>
.availability-day {
padding: 0 10px 10px 10px;
padding: 0 10px 0 10px;
position: absolute;
}
.availability-slots {
display: flex;
padding-left: 8px;
white-space: nowrap;
}
.availability-slot {
display: flex;
Expand All @@ -229,12 +229,13 @@ export default {
width: 120px;
}
.time-zone {
padding: 12px 12px 12px 0;
padding: 32px 12px 12px 0;
}
.grid-table {
display: grid;
grid-column-gap: 20px;
grid-row-gap: 20px;
margin-bottom: 32px;
grid-column-gap: 24px;
grid-row-gap: 6px;
grid-template-columns: min-content min-content min-content;
}
.button {
Expand All @@ -243,7 +244,7 @@ export default {
.label-weekday {
position: relative;
display: inline-flex;
padding-top: 7px;
padding-top: 4px;
}
.delete-slot {
background-color: transparent;
Expand All @@ -261,6 +262,8 @@ export default {
opacity: .5;
display: inline-flex;
padding: 0;
margin: 0;
margin-bottom: 3px;
&:hover {
opacity: 1;
Expand All @@ -274,7 +277,7 @@ export default {
}
.empty-content {
color: var(--color-text-lighter);
align-self: center;
margin-top: 4px;
}
</style>

0 comments on commit ba69028

Please sign in to comment.