Skip to content

Commit

Permalink
Minor style updates, miscellaneous updates.
Browse files Browse the repository at this point in the history
  • Loading branch information
Senexis committed Feb 4, 2024
1 parent 116e048 commit ad646da
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 4 deletions.
5 changes: 4 additions & 1 deletion src/components/Modals/AttributionModal.vue
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,10 @@ const props = defineProps({
<strong><a href="https://alloc8or.re/" target="_blank" rel="noopener noreferrer">Alloc8or</a>:</strong> Thanks for helping with
the parsing of the tunable files.
</li>
<li><strong>Ghost:</strong> Thanks for helping fix the dates of each tunable file.</li>
<li>
<strong><a href="https://github.com/AlanXYLi" target="_blank" rel="noopener noreferrer">Ghost</a>:</strong> Thanks for helping
fix the dates of each tunable file.
</li>
<li>
<strong
><a href="https://github.com/Senexis/RDO-GG-Tunables/graphs/contributors" target="_blank" rel="noopener noreferrer"
Expand Down
2 changes: 1 addition & 1 deletion src/components/Modals/BaseModal.vue
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ const props = defineProps({
leave-to="opacity-0 translate-y-4 sm:translate-y-0 sm:scale-95"
>
<DialogPanel
class="relative transform overflow-hidden rounded-lg bg-white dark:bg-slate-900 text-slate-900 dark:text-slate-50 text-left shadow-xl transition-all sm:my-8 sm:w-full sm:max-w-lg"
class="relative transform overflow-hidden rounded-lg bg-white dark:bg-slate-900 text-slate-900 dark:text-slate-50 text-left shadow-xl transition-all sm:my-8 sm:w-full sm:max-w-lg lg:max-w-3xl"
>
<slot></slot>
</DialogPanel>
Expand Down
7 changes: 5 additions & 2 deletions src/components/Modals/LicenseModal.vue
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
<script setup>
import BaseModal from './BaseModal.vue';
// eslint-disable-next-line no-undef
const appCopyrightYear = APP_COPYRIGHT_YEAR;
const emit = defineEmits(['close']);
const props = defineProps({
Expand All @@ -22,7 +25,7 @@ const props = defineProps({
without source code.
</p>
<h4 class="text-md font-semibold pb-2 my-4 border-b border-slate-200 dark:border-slate-600">MIT License</h4>
<p class="mb-2">Copyright &copy; 2023 Senexis</p>
<p class="mb-2">Copyright &copy; 2023-{{ appCopyrightYear }} Senexis</p>
<p class="mb-2">
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files
(the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify,
Expand All @@ -32,7 +35,7 @@ const props = defineProps({
<p class="mb-2">
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
</p>
<p class="mb-2">
<p class="mb-2 text-justify">
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
Expand Down

0 comments on commit ad646da

Please sign in to comment.