Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
5 changes: 5 additions & 0 deletions dev/assets/lucide-icons/rotate-ccw.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
12 changes: 7 additions & 5 deletions dev/aura.html
Original file line number Diff line number Diff line change
Expand Up @@ -232,11 +232,13 @@

/* TODO re-evaluate MDL API, how to achieve this */
.dashboard-section::part(master) {
flex-basis: 15%;
flex-basis: 15em;
flex-grow: 0.1;
}

.dashboard-section::part(detail) {
flex-basis: 85%;
flex-basis: 85em;
flex-grow: 2;
}

/* TODO part of Aura? */
Expand Down Expand Up @@ -398,7 +400,7 @@ <h1>Components</h1>

.components-view .component {
display: flex;
height: 200px;
height: calc(200px - var(--vaadin-gap-s));
align-items: center;
justify-content: center;
border-radius: var(--vaadin-radius-m);
Expand Down Expand Up @@ -610,7 +612,7 @@ <h6>Heading</h6>

<div class="aura-surface component widest tall no-padding">
<vaadin-grid theme="no-border">
<vaadin-grid-selection-column></vaadin-grid-selection-column>
<vaadin-grid-selection-column auto-select></vaadin-grid-selection-column>
<vaadin-grid-column path="name"></vaadin-grid-column>
<vaadin-grid-column path="email"></vaadin-grid-column>
</vaadin-grid>
Expand Down Expand Up @@ -688,8 +690,8 @@ <h3>Edit Theme</h3>
<aura-font-family-control label="--aura-font-family"></aura-font-family-control>
<hr />
<vaadin-button id="resetAll">
<vaadin-icon src="./assets/lucide-icons/rotate-ccw.svg" slot="prefix"></vaadin-icon>
Reset All
<vaadin-icon icon="lucide:rotate-ccw"></vaadin-icon>
</vaadin-button>
</vaadin-vertical-layout>
</vaadin-popover>
Expand Down
1 change: 0 additions & 1 deletion dev/aura/aura-view.css
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@
padding: var(--vaadin-padding-m);
display: flex;
align-items: center;
gap: var(--vaadin-gap-xs);
}

:is(.aura-view > header, .aura-view-header) :is(h1, h2, h3, h4, h5, h6, .aura-view-heading) {
Expand Down