You've already forked Atomcms-edit
3d5f94f9b9
- Add CSS variable support to dusk theme components for dynamic text colors - Fix low-contrast preset color combinations (cyberpunk, neon, magma, forest, obsidian, space) - Add text-shadow utility classes and apply to site header and backgrounds - Style logout buttons as proper buttons matching other button styles - Fix hardcoded text colors in atom theme components
12 lines
287 B
PHP
Executable File
12 lines
287 B
PHP
Executable File
@props(['for', 'info' => ''])
|
|
|
|
<div class="mb-2">
|
|
<label class="block font-semibold" for="{{ $for }}" style="color: var(--color-text);">
|
|
{{ $slot }}
|
|
</label>
|
|
|
|
<p class="text-muted" style="font-size: var(--size-small-text, 14px);">
|
|
{{ $info }}
|
|
</p>
|
|
</div>
|