diff --git a/resources/css/app.css b/resources/css/app.css index f7e46df..bf8caf5 100644 --- a/resources/css/app.css +++ b/resources/css/app.css @@ -239,7 +239,7 @@ body { color: #df8fdf; } -.difficulty-near-impossible-global { +.difficulty-near_impossible-global { background: rgba(160, 20, 20, 0.25); border: 1px solid rgba(220, 60, 60, 0.3); color: #e87070; diff --git a/resources/js/Components/FlightsGoneBy/AchievementCard.vue b/resources/js/Components/FlightsGoneBy/AchievementCard.vue index 6c7a379..e6eccf3 100644 --- a/resources/js/Components/FlightsGoneBy/AchievementCard.vue +++ b/resources/js/Components/FlightsGoneBy/AchievementCard.vue @@ -42,18 +42,6 @@ const unlocked = computed(() => { return true }) -const difficultyVariant = computed(() => { - switch (props.achievement.difficulty?.internal_name) { - case 'easy': return 'easy' - case 'moderate': return 'moderate' - case 'hard': return 'hard' - case 'expensive': return 'expensive' - case 'near_impossible': return 'near-impossible' - case 'impossible': return 'impossible' - default: return 'economy' - } -}) -