Skip to content

Commit c35beda

Browse files
committed
btn style updates
1 parent e4b9c08 commit c35beda

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

packages/studio-ui/src/App.vue

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,19 +9,19 @@
99

1010
<!-- Navigation buttons -->
1111
<v-btn-group v-if="courseId" class="mr-4">
12-
<v-btn :color="$route.name === 'browse' ? 'secondary' : 'transparent'" @click="$router.push('/')">
12+
<v-btn :color="$route.name === 'browse' ? 'primary' : 'secondary'" @click="$router.push('/')">
1313
<v-icon start>mdi-magnify</v-icon>
1414
Browse Course
1515
</v-btn>
1616
<v-btn
17-
:color="$route.name === 'create-card' ? 'secondary' : 'transparent'"
17+
:color="$route.name === 'create-card' ? 'primary' : 'secondary'"
1818
@click="$router.push('/create-card')"
1919
>
2020
<v-icon start>mdi-card-plus</v-icon>
2121
Create Card
2222
</v-btn>
2323
<v-btn
24-
:color="$route.name === 'bulk-import' ? 'secondary' : 'transparent'"
24+
:color="$route.name === 'bulk-import' ? 'primary' : 'secondary'"
2525
@click="$router.push('/bulk-import')"
2626
>
2727
<v-icon start>mdi-file-import</v-icon>

packages/studio-ui/src/components/StudioFlush.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<template>
2-
<v-btn color="success" :loading="flushing" :disabled="flushing" @click="handleFlush">
2+
<v-btn :loading="flushing" :disabled="flushing" @click="handleFlush">
33
<v-icon start>mdi-content-save</v-icon>
44
Flush to Static
55
</v-btn>

0 commit comments

Comments
 (0)