D3vugu-components/components/input/button.vugu
David Vogel 0dda9f7767 Several changes
- Remove license headers
- Update example pages
- Move ButtonNav into navigation package as SidebarEntry
- Add sidebar collapse and hide functionality
- Add click event
- Add click handler to button
- Add ButtonFullscreen to navigation package
- Fix resulting suffix space in CodeInline
- Fix CSS class of Code
- Update icon sketches.cdr
2023-05-12 12:57:42 +02:00

28 lines
561 B
Plaintext

<button vg-attr="c.AttrMap" class="d3c-1633424238" @click="c.HandleClick(event)">
<vg-comp expr="c.SymbolSlot"></vg-comp><vg-comp expr="c.DefaultSlot"></vg-comp>
</button>
<style>
.d3c-1633424238 {
display: flex;
gap: 12px;
text-decoration: none;
padding: 8px;
margin: 8px 0;
border-radius: 4px;
border: none;
background-color: white;
}
.d3c-1633424238 > * {
height: 16px;
}
.d3c-1633424238:hover {
background-color: RGBA(127, 127, 127, 0.1);
}
.d3c-1633424238-selected {
background-color: RGBA(127, 127, 127, 0.2);
}
</style>