mirror of
https://github.com/we-promise/sure.git
synced 2026-04-20 20:44:08 +00:00
* Add geist font * Design system css file * Add cursor ui/ux rules * Add shadows and shadow borders * Replace primitives with tokens for common text and backgrounds * Organize css * Update switch and checkbox class names * Add back global color variables
10 lines
345 B
Plaintext
10 lines
345 B
Plaintext
<%# locals: (header:, content:) %>
|
|
<div class="bg-gray-25 rounded-xl p-1 w-full">
|
|
<div class="py-2 px-4 flex items-center justify-between font-medium text-xs text-secondary">
|
|
<%= header %>
|
|
</div>
|
|
<div class="bg-white shadow-xs rounded-md border border-alpha-black-25 divide-y divide-alpha-black-50">
|
|
<%= content %>
|
|
</div>
|
|
</div>
|