Skip to content

Commit

Permalink
Merge branch 'add-userdata-backend-functionality' of github.com:ssciw…
Browse files Browse the repository at this point in the history
…r/mondey-frontend-prototype into add-userdata-backend-functionality
  • Loading branch information
MaHaWo committed Oct 22, 2024
2 parents ead050e + 5ca31bc commit 3708b30
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion frontend/src/lib/components/DataInput/DataInput.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@
<svelte:component
this={component}
class={highlight
? 'border-primary-600 dark:border-primary-600 rounded border-2 ' + componentClass
? 'rounded border-2 border-primary-600 dark:border-primary-600 ' + componentClass
: componentClass}
bind:value
{...properties}
Expand Down
4 changes: 2 additions & 2 deletions frontend/src/lib/components/UserDataInput.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@
{#if dataIsCurrent === true}
<Button
type="button"
class="dark:bg-primay-700 bg-primary-700 hover:bg-primary-800 dark:hover:bg-primary-800 w-full text-center text-sm text-white hover:text-white"
class="dark:bg-primay-700 w-full bg-primary-700 text-center text-sm text-white hover:bg-primary-800 hover:text-white dark:hover:bg-primary-800"
on:click={() => {
console.log('dataiscurrent click');
for (let element of data) {
Expand All @@ -213,7 +213,7 @@
</Button>
{:else}
<Button
class="dark:bg-primay-700 bg-primary-700 hover:bg-primary-800 dark:hover:bg-primary-800 w-full text-center text-sm text-white hover:text-white"
class="dark:bg-primay-700 w-full bg-primary-700 text-center text-sm text-white hover:bg-primary-800 hover:text-white dark:hover:bg-primary-800"
type="submit">{$_('userData.submitButtonLabel')}</Button
>
{/if}
Expand Down

0 comments on commit 3708b30

Please sign in to comment.