Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Allow users the ability to resize the logo #15093

Draft
wants to merge 26 commits into
base: master
Choose a base branch
from
Draft
Changes from 1 commit
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
69ad29a
adds settings to allow users to change logo size
mikesealey Nov 20, 2024
ebdf452
makes the currently-set value display in the logoSize dropdown
mikesealey Nov 20, 2024
1bd48e1
merge with master
mikesealey Nov 20, 2024
4baf3e0
wip adding option to display text under logo for large logos
mikesealey Nov 20, 2024
8a9490f
wip - need to work on unhappy paths
mikesealey Nov 21, 2024
82e3cf1
fixes text overflow
mikesealey Nov 22, 2024
21eac27
prevents overflow
mikesealey Nov 22, 2024
88c5b3b
wip
mikesealey Nov 22, 2024
dd06d5b
Merge branch 'master' of https://github.com/budibase/budibase into BU…
mikesealey Nov 26, 2024
a38d548
fixes alignment issue on first load
mikesealey Nov 28, 2024
fa62d9e
protects against oversize
mikesealey Nov 29, 2024
0da6cab
some fixes from our call
andz-bb Nov 29, 2024
e071fbc
wip
mikesealey Dec 3, 2024
bc7efe2
refators inline styling into classes
mikesealey Dec 4, 2024
c102ae9
merging master
mikesealey Dec 4, 2024
9f7f869
fixes resizing issue
mikesealey Dec 5, 2024
f4cb7d8
merge with master
mikesealey Dec 5, 2024
11073f9
Merge branch 'BUDI-8831b' of https://github.com/budibase/budibase int…
mikesealey Dec 5, 2024
56ee3bd
Merge branch 'master' of https://github.com/budibase/budibase into BU…
mikesealey Dec 5, 2024
b11270f
Merge branch 'master' into BUDI-8831b
mikesealey Dec 5, 2024
86c236d
corrections for lint checks
mikesealey Dec 5, 2024
48e94e8
Merge branch 'BUDI-8831b' of https://github.com/budibase/budibase int…
mikesealey Dec 5, 2024
b0252e3
fixes lint issue
mikesealey Dec 5, 2024
f45ce2d
yarn changes
mikesealey Dec 5, 2024
f05e0ce
Merge branch 'master' into BUDI-8831b
mikesealey Dec 5, 2024
10e03fc
Merge branch 'master' into BUDI-8831b
andz-bb Dec 9, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
prevents overflow
  • Loading branch information
mikesealey committed Nov 22, 2024
commit 21eac2740308082b4f81c1c7d16dbc331af1b7ff
8 changes: 6 additions & 2 deletions packages/client/src/components/app/Layout.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,11 @@
{/if}
<div
class="logo"
style="flex-direction: {textBelow ? 'column' : 'row'};"
style="flex-direction: {textBelow
? 'column'
: 'row'}; max-width: {navigation === 'Left'
? '165px'
: '95%'};"
>
<div>
{#if !hideLogo}
Expand Down Expand Up @@ -546,7 +550,7 @@
display: flex;
flex-direction: row;
justify-content: flex-start;
align-items: center;
align-items: left;
gap: var(--spacing-m);
flex: 1 1 auto;
max-width: 165px;
Expand Down
Loading