Skip to content

Commit

Permalink
hotfix: proposals CSS (#8123)
Browse files Browse the repository at this point in the history
* hotfix: add scroll to proposals CSS

* enhancement: align text to left in proposals
  • Loading branch information
begonaalvarezd authored Mar 5, 2024
1 parent 763c000 commit 3c274cd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/desktop/components/ProposalQuestion.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
cursor-pointer dark:border-transparent dark:bg-gray-850"
class:animate-pulse={isLoading}
>
<button on:click={() => onQuestionClick(questionIndex)} class="flex justify-between items-center">
<button on:click={() => onQuestionClick(questionIndex)} class="flex justify-between items-center text-left">

Check warning on line 56 in packages/desktop/components/ProposalQuestion.svelte

View workflow job for this annotation

GitHub Actions / lint

Missing return type on function
<div class="flex flex-col min-w-0">
{#if questionIndex !== undefined}
<Text smaller fontWeight={FontWeight.bold} overrideColor classes="mb-1 text-blue-500">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,7 @@
</div>
<div class="w-3/5">
<Pane height={Height.Full}>
<div class="flex flex-col justify-between">
<div class="flex flex-col justify-between flex-1 space-y-4 scrollable-y max-h-full">
<proposal-questions
class="relative flex flex-1 flex-col space-y-5 overflow-y-scroll"
bind:this={proposalQuestions}
Expand Down

0 comments on commit 3c274cd

Please sign in to comment.