@deepgram/styles 0.2.9 → 0.2.10

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/lib/deepgram.css CHANGED
@@ -1627,4 +1627,169 @@
1627
1627
  .dg-combobox__status--offline {
1628
1628
  @apply bg-dg-muted;
1629
1629
  }
1630
+
1631
+ /* Stacked */
1632
+
1633
+ .dg-stacked {
1634
+ @apply min-h-full;
1635
+ }
1636
+
1637
+ .dg-stacked__nav {
1638
+ @apply border-b border-dg-border;
1639
+ background-color: var(--dg-bg-default, #0b0b0c);
1640
+ }
1641
+
1642
+ .dg-stacked__nav-container {
1643
+ @apply mx-auto max-w-7xl px-4 sm:px-6 lg:px-8;
1644
+ }
1645
+
1646
+ .dg-stacked__nav-bar {
1647
+ @apply flex h-16 justify-between;
1648
+ }
1649
+
1650
+ .dg-stacked__nav-left {
1651
+ @apply flex;
1652
+ }
1653
+
1654
+ .dg-stacked__logo {
1655
+ @apply flex shrink-0 items-center;
1656
+ }
1657
+
1658
+ .dg-stacked__logo img {
1659
+ @apply h-8 w-auto;
1660
+ }
1661
+
1662
+ .dg-stacked__nav-links {
1663
+ @apply hidden sm:-my-px sm:ml-6 sm:flex sm:space-x-8;
1664
+ }
1665
+
1666
+ .dg-stacked__nav-link {
1667
+ @apply inline-flex items-center border-b-2 border-transparent px-1 pt-1;
1668
+ @apply text-sm font-medium text-dg-muted hover:border-dg-platinum hover:text-dg-fog;
1669
+ }
1670
+
1671
+ .dg-stacked__nav-link--active {
1672
+ @apply border-dg-primary text-white;
1673
+ }
1674
+
1675
+ .dg-stacked__nav-right {
1676
+ @apply hidden sm:ml-6 sm:flex sm:items-center;
1677
+ }
1678
+
1679
+ .dg-stacked__notification-btn {
1680
+ @apply relative rounded-full p-1 text-dg-muted hover:text-white focus:outline-2;
1681
+ @apply focus:outline-offset-2 focus:outline-dg-primary;
1682
+ }
1683
+
1684
+ .dg-stacked__notification-btn svg {
1685
+ @apply size-6;
1686
+ }
1687
+
1688
+ .dg-stacked__profile {
1689
+ @apply relative ml-3;
1690
+ }
1691
+
1692
+ .dg-stacked__profile-btn {
1693
+ @apply relative flex max-w-xs items-center rounded-full focus-visible:outline-2;
1694
+ @apply focus-visible:outline-offset-2 focus-visible:outline-dg-primary;
1695
+ }
1696
+
1697
+ .dg-stacked__profile-btn img {
1698
+ @apply size-8 rounded-full outline -outline-offset-1 outline-white/10;
1699
+ }
1700
+
1701
+ .dg-stacked__profile-menu {
1702
+ @apply w-48 origin-top-right rounded-md py-1 shadow-lg outline;
1703
+ @apply outline-white/10;
1704
+ background-color: var(--dg-bg-default, #0b0b0c);
1705
+ }
1706
+
1707
+ .dg-stacked__profile-menu a {
1708
+ @apply block px-4 py-2 text-sm text-dg-platinum focus:bg-white/5;
1709
+ @apply focus:outline-hidden;
1710
+ }
1711
+
1712
+ .dg-stacked__mobile-toggle {
1713
+ @apply -mr-2 flex items-center sm:hidden;
1714
+ }
1715
+
1716
+ .dg-stacked__mobile-btn {
1717
+ @apply relative inline-flex items-center justify-center rounded-md p-2;
1718
+ @apply text-dg-muted hover:bg-white/5 hover:text-white focus:outline-2 focus:outline-offset-2 focus:outline-dg-primary;
1719
+ background-color: var(--dg-bg-default, #0b0b0c);
1720
+ }
1721
+
1722
+ .dg-stacked__mobile-btn svg {
1723
+ @apply size-6;
1724
+ }
1725
+
1726
+ .dg-stacked__mobile-menu {
1727
+ @apply sm:hidden;
1728
+ }
1729
+
1730
+ .dg-stacked__mobile-links {
1731
+ @apply space-y-1 pt-2 pb-3;
1732
+ }
1733
+
1734
+ .dg-stacked__mobile-link {
1735
+ @apply block border-l-4 border-transparent py-2 pr-4 pl-3;
1736
+ @apply text-base font-medium text-dg-muted hover:border-dg-slate hover:bg-white/5 hover:text-dg-fog;
1737
+ }
1738
+
1739
+ .dg-stacked__mobile-link--active {
1740
+ @apply border-dg-primary bg-dg-primary/10 text-dg-primary;
1741
+ }
1742
+
1743
+ .dg-stacked__mobile-user {
1744
+ @apply border-t border-dg-border pt-4 pb-3;
1745
+ }
1746
+
1747
+ .dg-stacked__mobile-user-info {
1748
+ @apply flex items-center px-4;
1749
+ }
1750
+
1751
+ .dg-stacked__mobile-user-avatar {
1752
+ @apply shrink-0;
1753
+ }
1754
+
1755
+ .dg-stacked__mobile-user-avatar img {
1756
+ @apply size-10 rounded-full outline -outline-offset-1 outline-white/10;
1757
+ }
1758
+
1759
+ .dg-stacked__mobile-user-details {
1760
+ @apply ml-3;
1761
+ }
1762
+
1763
+ .dg-stacked__mobile-user-name {
1764
+ @apply text-base font-medium text-white;
1765
+ }
1766
+
1767
+ .dg-stacked__mobile-user-email {
1768
+ @apply text-sm font-medium text-dg-muted;
1769
+ }
1770
+
1771
+ .dg-stacked__mobile-user-actions {
1772
+ @apply mt-3 space-y-1;
1773
+ }
1774
+
1775
+ .dg-stacked__mobile-user-actions a {
1776
+ @apply block px-4 py-2 text-base font-medium text-dg-muted;
1777
+ @apply hover:bg-white/5 hover:text-dg-fog;
1778
+ }
1779
+
1780
+ .dg-stacked__content {
1781
+ @apply py-10;
1782
+ }
1783
+
1784
+ .dg-stacked__page-header {
1785
+ @apply mx-auto max-w-7xl px-4 sm:px-6 lg:px-8;
1786
+ }
1787
+
1788
+ .dg-stacked__page-title {
1789
+ @apply text-3xl font-bold tracking-tight text-white;
1790
+ }
1791
+
1792
+ .dg-stacked__main {
1793
+ @apply mx-auto max-w-7xl px-4 py-8 sm:px-6 lg:px-8;
1794
+ }
1630
1795
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@deepgram/styles",
3
- "version": "0.2.9",
3
+ "version": "0.2.10",
4
4
  "description": "Tailwind-based design system and styles library for Deepgram design system and demos",
5
5
  "author": "Deepgram",
6
6
  "license": "MIT",