Skip to content

Commit

Permalink
mess with styling
Browse files Browse the repository at this point in the history
  • Loading branch information
MaHaWo committed Aug 20, 2024
1 parent 465cc79 commit eb8b8bf
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions src/lib/components/AbstractDropdown.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -8,16 +8,16 @@
// @ts-ignore
export let dropdownData = [];
export let heading = 'dummy dropdown data';
const textColors = 'text-gray-700 dark:text-gray-400';
const textColors = 'text-gray-700 dark:text-gray-400 ';
const basicColorBehavior =
textColors +
'hover:text-primary-800 dark:hover:text-primary-500 group-hover:text-primary-800 dark:group-hover:text-primary-500';
const headerStyle = 'mb-2 text-2xl font-bold tracking-tight' + textColors;
const paragraphStyle = 'mb-3 font-normal leading-tight' + textColors;
const symbolStyle = 'h-6 w-6' + textColors;
'hover:text-primary-800 dark:hover:text-primary-500 group-hover:text-primary-800 dark:group-hover:text-primary-500 ';
const headerStyle = 'mb-2 text-2xl font-bold tracking-tight ' + textColors;
const paragraphStyle = 'mb-3 font-normal leading-tight ' + textColors;
const symbolStyle = 'h-6 w-6 ' + textColors;
const labelStyle = 'mb-2 text-lg ' + textColors;
const labelContainerStyle = 'flex items-center space-x-2';
const buttonStyle = '' + basicColorBehavior;
const labelContainerStyle = 'flex items-center space-x-2 ';
const buttonStyle = ' ';
</script>

<div class="items-center space-x-4 rtl:space-x-reverse">
Expand Down

0 comments on commit eb8b8bf

Please sign in to comment.