Skip to content

Commit 46260be

Browse files
authored
Vue 3 in Laravel 10
1 parent 6595598 commit 46260be

File tree

5 files changed

+26
-16
lines changed

5 files changed

+26
-16
lines changed
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
<template>
2+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" class="theme-switch-moon"><path d="M12.1,22c-0.3,0-0.6,0-0.9,0c-5.5-0.5-9.5-5.4-9-10.9c0.4-4.8,4.2-8.6,9-9c0.4,0,0.8,0.2,1,0.5c0.2,0.3,0.2,0.8-0.1,1.1c-2,2.7-1.4,6.4,1.3,8.4c2.1,1.6,5,1.6,7.1,0c0.3-0.2,0.7-0.3,1.1-0.1c0.3,0.2,0.5,0.6,0.5,1c-0.2,2.7-1.5,5.1-3.6,6.8C16.6,21.2,14.4,22,12.1,22zM9.3,4.4c-2.9,1-5,3.6-5.2,6.8c-0.4,4.4,2.8,8.3,7.2,8.7c2.1,0.2,4.2-0.4,5.8-1.8c1.1-0.9,1.9-2.1,2.4-3.4c-2.5,0.9-5.3,0.5-7.5-1.1C9.2,11.4,8.1,7.7,9.3,4.4z"></path></svg>
3+
</template>
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
<template>
2+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" class="theme-switch-sun"><path d="M12,18c-3.3,0-6-2.7-6-6s2.7-6,6-6s6,2.7,6,6S15.3,18,12,18zM12,8c-2.2,0-4,1.8-4,4c0,2.2,1.8,4,4,4c2.2,0,4-1.8,4-4C16,9.8,14.2,8,12,8z"></path><path d="M12,4c-0.6,0-1-0.4-1-1V1c0-0.6,0.4-1,1-1s1,0.4,1,1v2C13,3.6,12.6,4,12,4z"></path><path d="M12,24c-0.6,0-1-0.4-1-1v-2c0-0.6,0.4-1,1-1s1,0.4,1,1v2C13,23.6,12.6,24,12,24z"></path><path d="M5.6,6.6c-0.3,0-0.5-0.1-0.7-0.3L3.5,4.9c-0.4-0.4-0.4-1,0-1.4s1-0.4,1.4,0l1.4,1.4c0.4,0.4,0.4,1,0,1.4C6.2,6.5,5.9,6.6,5.6,6.6z"></path><path d="M19.8,20.8c-0.3,0-0.5-0.1-0.7-0.3l-1.4-1.4c-0.4-0.4-0.4-1,0-1.4s1-0.4,1.4,0l1.4,1.4c0.4,0.4,0.4,1,0,1.4C20.3,20.7,20,20.8,19.8,20.8z"></path><path d="M3,13H1c-0.6,0-1-0.4-1-1s0.4-1,1-1h2c0.6,0,1,0.4,1,1S3.6,13,3,13z"></path><path d="M23,13h-2c-0.6,0-1-0.4-1-1s0.4-1,1-1h2c0.6,0,1,0.4,1,1S23.6,13,23,13z"></path><path d="M4.2,20.8c-0.3,0-0.5-0.1-0.7-0.3c-0.4-0.4-0.4-1,0-1.4l1.4-1.4c0.4-0.4,1-0.4,1.4,0s0.4,1,0,1.4l-1.4,1.4C4.7,20.7,4.5,20.8,4.2,20.8z"></path><path d="M18.4,6.6c-0.3,0-0.5-0.1-0.7-0.3c-0.4-0.4-0.4-1,0-1.4l1.4-1.4c0.4-0.4,1-0.4,1.4,0s0.4,1,0,1.4l-1.4,1.4C18.9,6.5,18.6,6.6,18.4,6.6z"></path></svg>
3+
</template>

app/resources/js/components/ChangeLocale.vue

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -34,21 +34,25 @@ watch(
3434
float: right;
3535
width: auto;
3636
height: auto;
37-
padding: 5px;
37+
border-radius: var(--border-radius);
38+
background: var(--bg-secondary);
39+
border: 1px solid var(--divider-primary);
3840
}
3941
.locale-changer-select {
4042
float: right;
4143
display: inline;
4244
padding: 5px;
4345
text-align: center;
44-
border: 0px;
4546
font-size: 1rem;
46-
cursor: pointer;
47-
border-radius: 10px;
47+
cursor: pointer;
48+
box-sizing: border-box;
49+
border-radius: var(--border-radius);
50+
background: var(--bg-secondary);
51+
border: 0px;
4852
}
4953
.locale-changer-select > * {
50-
background: #fff;
51-
color: #222;
54+
background: var(--bg-secondary);
55+
color: var(--text-primary);
5256
}
5357
.locale-changer-select:focus {
5458
border: none;

app/resources/js/components/ChangeTheme.vue

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -22,30 +22,30 @@ onMounted(() => {
2222
<style scoped>
2323
.toggle-theme {
2424
float: right;
25-
background: #eee;
26-
box-sizing: border-box;
27-
border: 1px solid #e9e9ed;
28-
border-radius: 10px;
2925
margin: 5px;
3026
padding: 2px;
3127
width: 44px;
3228
height: 22px;
3329
cursor: pointer;
30+
border-radius: var(--border-radius);
31+
box-sizing: border-box;
32+
background: var(--bg-secondary);
33+
border: 1px solid var(--divider-primary);
3434
}
3535
3636
.toggle-theme-dark {
37-
border: 1px solid #fff;
3837
background: transparent;
38+
border: 1px solid var(--divider-primary);
3939
}
4040
4141
.theme-switch-icon {
4242
position: relative;
4343
float: left;
4444
width: 16px;
4545
height: 16px;
46-
border-radius: 10px;
47-
background: #fff;
48-
transition: all 2s;
46+
border-radius: var(--border-radius);
47+
background: var(--bg-primary);
48+
transition: all 1s;
4949
}
5050
5151
.theme-switch-icon svg {
@@ -62,7 +62,7 @@ onMounted(() => {
6262
}
6363
6464
.toggle-theme-dark .theme-switch-icon svg {
65-
fill: #fff !important;
65+
fill: var(--text-primary) !important;
6666
}
6767
6868
.toggle-theme .theme-switch-icon svg.theme-switch-sun {

app/resources/js/stores/theme.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { defineStore } from 'pinia'
33

44
export const useThemeStore = defineStore('theme', () => {
55
const color = ref('light')
6-
const getColor = computed(() => color.value )
6+
const getColor = computed(() => color.value )
77
function toggle() {
88
color.value = color.value == 'light' ? 'dark' : 'light'
99
update()

0 commit comments

Comments
 (0)