Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
SethSharp committed Mar 27, 2024
1 parent 90d22c6 commit d4fed0d
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 8 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,9 @@ jobs:
- name: Copy .env
run: php -r "file_exists('.env') || copy('staging.env.example', '.env');"

- name: Install composer dependencies
run: composer install --no-cache --no-ansi --no-interaction --no-progress

- name: Generate key
run: php artisan key:generate

Expand Down
2 changes: 1 addition & 1 deletion resources/js/Components/Buttons/PrimaryButton.vue
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<template>
<button
class="inline-flex items-center px-4 py-2 bg-primary border border-transparent rounded-md font-semibold text-xs text-white tracking-widest hover:bg-primary focus:primary active:bg-primary focus:outline-none focus:ring-2 focus:ring-primary focus:ring-offset-2 transition ease-in-out duration-150"
class="inline-flex items-center px-4 py-2 bg-primary-600 border border-transparent rounded-md font-semibold text-xs text-white tracking-widest hover:bg-primary-600 focus:primary active:bg-primary-600 focus:outline-none focus:ring-2 focus:ring-primary-600 focus:ring-offset-2 transition ease-in-out duration-150"
>
<slot />
</button>
Expand Down
2 changes: 1 addition & 1 deletion resources/js/Components/Calendar/CalendarComponent.vue
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ onMounted(() => {
>
<input
type="checkbox"
class="my-0.5 h-8 w-8 rounded-full border-2 border-primary text-primary hover:bg-primary hover:bg-opacity-25 focus:ring-transparent"
class="my-0.5 h-8 w-8 rounded-full border-2 border-primary-600 text-primary hover:bg-primary hover:bg-opacity-25 focus:ring-transparent"
@change="
appliedFilters[index]
? removeFilter(filter.id, index)
Expand Down
2 changes: 1 addition & 1 deletion resources/js/Components/Checkbox.vue
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ const proxyChecked = computed({
v-model="proxyChecked"
:value="value"
type="checkbox"
class="my-0.5 h-8 w-8 rounded-full border-2 border-primary text-primary hover:bg-primary hover:bg-opacity-25 focus:ring-transparent"
class="my-0.5 h-8 w-8 rounded-full border-2 border-primary-600 text-primary-600 hover:bg-primary-600 hover:bg-opacity-25 focus:ring-transparent"
v-bind="$attrs"
/>

Expand Down
4 changes: 2 additions & 2 deletions resources/js/Components/NavLink.vue
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ const props = defineProps({
const classes = computed(() =>
props.active
? 'inline-flex items-center px-1 pt-1 border-b-2 border-primary text-sm font-medium leading-5 text-gray-900 focus:outline-none focus:border-indigo-700 transition duration-150 ease-in-out'
: 'inline-flex items-center px-1 pt-1 border-b-2 border-transparent text-sm font-medium leading-5 text-gray-500 hover:text-gray-700 hover:border-primaryOpacity focus:outline-none focus:text-gray-700 focus:border-gray-300 transition duration-150 ease-in-out'
? 'inline-flex items-center px-1 pt-1 border-b-2 border-primary-600 text-sm font-medium leading-5 text-gray-900 focus:outline-none focus:border-indigo-700 transition duration-150 ease-in-out'
: 'inline-flex items-center px-1 pt-1 border-b-2 border-transparent text-sm font-medium leading-5 text-gray-500 hover:text-gray-700 focus:outline-none focus:text-gray-700 focus:border-gray-300 transition duration-150 ease-in-out'
)
</script>

Expand Down
4 changes: 2 additions & 2 deletions resources/js/Components/ResponsiveNavLink.vue
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ const props = defineProps({
const classes = computed(() =>
props.active
? 'block w-full pl-3 pr-4 py-2 border-l-4 border-primary text-left text-base font-medium text-black bg-primary bg-opacity-25 transition duration-150 ease-in-out'
: 'block w-full pl-3 pr-4 py-2 border-l-4 border-transparent text-left text-base font-medium text-gray-600 hover:text-gray-800 hover:bg-gray-50 hover:border-gray-300 transition duration-150 ease-in-out focus:bg-primary focus:bg-opacity-25'
? 'block w-full pl-3 pr-4 py-2 border-l-4 border-primary-600 text-left text-base font-medium text-black bg-primary-600 bg-opacity-25 transition duration-150 ease-in-out'
: 'block w-full pl-3 pr-4 py-2 border-l-4 border-transparent text-left text-base font-medium text-gray-600 hover:text-gray-800 hover:bg-gray-50 hover:border-gray-300 transition duration-150 ease-in-out focus:bg-primary-600 focus:bg-opacity-25'
)
</script>

Expand Down
2 changes: 1 addition & 1 deletion resources/js/Pages/Welcome.vue
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ defineProps({
<Link
v-if="canRegister"
:href="route('register')"
class="ml-4 font-semibold bg-primary rounded-lg p-2 hover:bg-opacity-50"
class="ml-4 font-semibold bg-primary-600 rounded-lg p-2 hover:bg-opacity-50"
>
Register
</Link>
Expand Down

0 comments on commit d4fed0d

Please sign in to comment.