Skip to content

Commit

Permalink
fix(calendar): remove not nice border around calendar events (#2068)
Browse files Browse the repository at this point in the history
Co-authored-by: Rik Smale <[email protected]>
  • Loading branch information
LeonVreling and WikiRik authored Mar 9, 2024
1 parent 848fd3f commit 18bbadd
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/views/dashboard/Calendar.vue
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,7 @@ export default {
start: new Date(event.starts),
end: new Date(event.ends),
backgroundColor: this.colors[event.type] || '#1468C5',
borderColor: '#FFFFFF',
textColor: '#FFFFFF',
url: '/events/' + (event.url || event.id),
description: event.description
Expand All @@ -117,7 +118,8 @@ export default {
title: event.name,
start: new Date(event.starts),
end: new Date(event.ends),
backgroundColor: this.colors[event.type] || '#00BBD8',
backgroundColor: '#00BBD8',
borderColor: '#FFFFFF',
textColor: '#FFFFFF',
url: '/summeruniversity/' + (event.url || event.id),
description: event.description
Expand All @@ -133,6 +135,7 @@ export default {
start: new Date(event.starts),
end: new Date(event.ends),
backgroundColor: '#1468C5',
borderColor: '#FFFFFF',
textColor: '#FFFFFF',
url: '/statutory/' + (event.url || event.id),
description: event.description
Expand All @@ -151,6 +154,7 @@ export default {
start: new Date(event.start),
end: new Date(event.end),
backgroundColor: '#898989',
borderColor: '#FFFFFF',
textColor: '#FFFFFF',
description: event.description
}))
Expand Down

0 comments on commit 18bbadd

Please sign in to comment.