Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix in schedule view: Change buttons to make it more clear that are a button #527

Merged
merged 3 commits into from
Apr 7, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 13 additions & 14 deletions src/views/Schedule.vue
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ const currentSchedule = computed<'live' | 'detailed'>(() => {
<template>
<PanelContainer id="schedule" class="schedule">
<div class="explore">
<p class="explore__title">Select your favourite view</p>
<div class="explore__list">
<RouterLink
:to="{
Expand Down Expand Up @@ -80,33 +79,28 @@ const currentSchedule = computed<'live' | 'detailed'>(() => {
}
.explore {
display: flex;
flex-direction: column;
align-items: flex-end;
margin-top: 20px;
text-align: center;
&__title {
margin: 0 0 20px;
color: $primary-color-light;
font-size: 20px;
font-weight: bold;
text-align: center;
}
margin-right: 20px;
}
.note {
margin: 15px 0;
margin: 0;
color: $primary-color-light;
font-size: 18px;
font-size: 15px;
text-align: center;
}
.button {
display: inline-block;
padding: 8px 24px;
margin: 0 0.2em 16px;
background: $primary-color;
background: $links-color;
border-radius: 3px;
box-shadow: 0 2px 10px rgb(0 0 0 / 20%);
color: $text-color;
color: #000;
cursor: url('../assets/img/rocket-fire.png'), auto;
font-weight: bold;
Expand All @@ -115,5 +109,10 @@ const currentSchedule = computed<'live' | 'detailed'>(() => {
opacity: 0.4;
pointer-events: none;
}
&:hover {
background: $links-color-hover;
color: #fff;
}
}
</style>
Loading