mirror of
https://github.com/we-promise/sure.git
synced 2026-04-20 12:34:12 +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
13 lines
372 B
Plaintext
13 lines
372 B
Plaintext
<%# locals: (series:) %>
|
|
<% if series %>
|
|
<div
|
|
id="lineChart"
|
|
class="w-full h-full"
|
|
data-controller="time-series-chart"
|
|
data-time-series-chart-data-value="<%= series.to_json %>"></div>
|
|
<% else %>
|
|
<div class="w-full h-full flex items-center justify-center">
|
|
<p class="text-secondary">No data available for the selected period.</p>
|
|
</div>
|
|
<% end %>
|