Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ const onChangeTab = () => {
<main class="main">
<v-tabs
v-model="currentTab"
bg-color="primary"
bg-color="rgb(0, 1, 76)"
color="white"
grow
@update:model-value="onChangeTab"
Expand Down
3 changes: 2 additions & 1 deletion src/pages/PageMain.vue
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ const courses = ['1', '2', '3', '4', '5', '6', '1М', '2М'];
С вопросами обращайтесь в Профком.
</IrdomTooltip>
</div>
<div class="stipend bg-primary">{{ allDef ? formattedStipend : '?' }}</div>
<div class="stipend">{{ allDef ? formattedStipend : '?' }}</div>
</div>
</div>
</template>
Expand All @@ -173,6 +173,7 @@ const courses = ['1', '2', '3', '4', '5', '6', '1М', '2М'];
display: flex;
align-items: center;
font-size: 30px;
background: rgb(0 1 76);
color: white;
border-radius: 999px;
padding: 0 16px;
Expand Down
6 changes: 3 additions & 3 deletions src/vuetify.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { aliases, mdi } from 'vuetify/iconsets/mdi-svg';
const profcomffLight = {
dark: false,
colors: {
primary: 'rgba(71, 28, 120)',
primary: 'rgb(0, 1, 76)',
'on-primary': 'rgb(255, 255, 255)',

secondary: 'rgb(255, 139, 0)',
Expand All @@ -31,11 +31,11 @@ export const vuetify = createVuetify({
},
defaults: {
VBtnToggle: {
color: 'rgba(71, 28, 120)',
color: 'rgb(0, 1, 76)',
elevation: 1,
},
VCheckbox: {
color: 'rgba(71, 28, 120)',
color: 'rgb(0, 1, 76)',
},
},
theme: {
Expand Down