]> danix's work - danix.xyz-2.git/commitdiff
build: rebuild CSS to include social sharing widget utility classes
authorDanilo M. <redacted>
Fri, 17 Apr 2026 14:37:53 +0000 (16:37 +0200)
committerDanilo M. <redacted>
Fri, 17 Apr 2026 14:37:53 +0000 (16:37 +0200)
themes/danix-xyz-hacker/assets/css/main.min.css

index aaf57fdda12e2cdc0d6bd954599283a795b97ac2..d2db7994fd684a7bf76ebfb4439e5d95220e77f7 100644 (file)
@@ -1272,6 +1272,10 @@ button,
   color: var(--accent);
 }
 
+.text-accent2 {
+  color: var(--accent2);
+}
+
 .text-text {
   color: var(--text);
 }
@@ -1405,6 +1409,21 @@ button,
 
 /* Icon button (for icons without text) */
 
+.btn-icon {
+  display: inline-flex;
+  align-items: center;
+  justify-content: center;
+  border-radius: 9999px;
+  padding: 0.5rem;
+  width: 40px;
+  height: 40px;
+}
+
+.btn-icon svg {
+  width: 20px;
+  height: 20px;
+}
+
 /* Badge base style */
 
 .badge {
@@ -1751,6 +1770,10 @@ article.border.border-border\/30.rounded-lg.card.group.bg-bg {
   display: block;
 }
 
+.inline {
+  display: inline;
+}
+
 .flex {
   display: flex;
 }
@@ -1897,6 +1920,14 @@ article.border.border-border\/30.rounded-lg.card.group.bg-bg {
   grid-template-columns: repeat(1, minmax(0, 1fr));
 }
 
+.grid-cols-2 {
+  grid-template-columns: repeat(2, minmax(0, 1fr));
+}
+
+.grid-cols-5 {
+  grid-template-columns: repeat(5, minmax(0, 1fr));
+}
+
 .flex-col {
   flex-direction: column;
 }
@@ -1917,6 +1948,10 @@ article.border.border-border\/30.rounded-lg.card.group.bg-bg {
   justify-content: space-between;
 }
 
+.justify-items-center {
+  justify-items: center;
+}
+
 .gap-1 {
   gap: 0.25rem;
 }
@@ -2255,6 +2290,10 @@ article.border.border-border\/30.rounded-lg.card.group.bg-bg {
   color: var(--accent);
 }
 
+.text-accent2 {
+  color: var(--accent2);
+}
+
 .text-bg {
   color: var(--bg);
 }
@@ -3647,6 +3686,16 @@ article.toast.border-border\/30.rounded-lg.overflow-hidden.group.bg-bg {
   --tw-ring-color: var(--accent);
 }
 
+.focus-visible\:ring-2:focus-visible {
+  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
+  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
+  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
+}
+
+.focus-visible\:ring-accent:focus-visible {
+  --tw-ring-color: var(--accent);
+}
+
 .disabled\:cursor-not-allowed:disabled {
   cursor: not-allowed;
 }