mirror of
https://github.com/sonr-io/sonr.git
synced 2026-08-03 09:51:39 +00:00
- **refactor: move session-related code to middleware package** - **refactor: update PKL build process and adjust related configurations** - **feat: integrate base.cosmos.v1 Genesis module** - **refactor: pass session context to modal rendering functions** - **refactor: move nebula package to app directory and update templ version** - **refactor: Move home section video view to dedicated directory** - **refactor: remove unused views file** - **refactor: move styles and UI components to global scope** - **refactor: Rename images.go to cdn.go** - **feat: Add Empty State Illustrations** - **refactor: Consolidate Vault Index Logic** - **fix: References to App.wasm and remove Vault Directory embedded CDN files** - **refactor: Move CDN types to Models** - **fix: Correct line numbers in templ error messages for arch_templ.go** - **refactor: use common types for peer roles** - **refactor: move common types and ORM to a shared package** - **fix: Config import dwn** - **refactor: move nebula directory to app** - **feat: Rebuild nebula** - **fix: correct file paths in panels templates** - **feat: Remove duplicate types** - **refactor: Move dwn to pkg/core** - **refactor: Binary Structure** - **feat: Introduce Crypto Pkg** - **fix: Broken Process Start** - **feat: Update pkg/* structure** - **feat: Refactor PKL Structure** - **build: update pkl build process** - **chore: Remove Empty Files** - **refactor: remove unused macaroon package** - **feat: Add WebAwesome Components** - **refactor: consolidate build and generation tasks into a single taskfile, remove redundant makefile targets** - **refactor: refactor server and move components to pkg/core/dwn** - **build: update go modules** - **refactor: move gateway logic into dedicated hway command** - **feat: Add KSS (Krawczyk-Song-Song) MPC cryptography module** - **feat: Implement MPC-based JWT signing and UCAN token generation** - **feat: add support for MPC-based JWT signing** - **feat: Implement MPC-based UCAN capabilities for smart accounts** - **feat: add address field to keyshareSource** - **feat: Add comprehensive MPC test suite for keyshares, UCAN tokens, and token attenuations** - **refactor: improve MPC keyshare management and signing process** - **feat: enhance MPC capability hierarchy documentation** - **refactor: rename GenerateKeyshares function to NewKeyshareSource for clarity** - **refactor: remove unused Ethereum address computation** - **feat: Add HasHandle and IsAuthenticated methods to HTTPContext** - **refactor: Add context.Context support to session HTTPContext** - **refactor: Resolve context interface conflicts in HTTPContext** - **feat: Add session ID context key and helper functions** - **feat: Update WebApp Page Rendering** - **refactor: Simplify context management by using single HTTPContext key** - **refactor: Simplify HTTPContext creation and context management in session middleware** - **refactor: refactor session middleware to use a single data structure** - **refactor: Simplify HTTPContext implementation and session data handling** - **refactor: Improve session context handling and prevent nil pointer errors** - **refactor: Improve session context handling with nil safety and type support** - **refactor: improve session data injection** - **feat: add full-screen modal component and update registration flow** - **chore: add .air.toml to .gitignore** - **feat: add Air to devbox and update dependencies**
179 lines
3.2 KiB
CSS
179 lines
3.2 KiB
CSS
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500&family=Inter+Tight:ital,wght@0,500;0,600;0,700;1,700&display=fallback");
|
|
|
|
/* src/css/styles.css */
|
|
@import "tailwindcss/base";
|
|
@import "tailwindcss/components";
|
|
@import "tailwindcss/utilities";
|
|
|
|
/* See Alpine.js: https://github.com/alpinejs/alpine#x-cloak */
|
|
[x-cloak=""] {
|
|
display: none;
|
|
}
|
|
|
|
/* Custom styles */
|
|
.form-input:focus,
|
|
.form-textarea:focus,
|
|
.form-multiselect:focus,
|
|
.form-select:focus,
|
|
.form-checkbox:focus,
|
|
.form-radio:focus {
|
|
@apply ring-0;
|
|
}
|
|
|
|
/* Hamburger button */
|
|
.hamburger svg > *:nth-child(1),
|
|
.hamburger svg > *:nth-child(2),
|
|
.hamburger svg > *:nth-child(3) {
|
|
transform-origin: center;
|
|
transform: rotate(0deg);
|
|
}
|
|
|
|
.hamburger svg > *:nth-child(1) {
|
|
transition:
|
|
y 0.1s 0.25s ease-in,
|
|
transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19),
|
|
opacity 0.1s ease-in;
|
|
}
|
|
|
|
.hamburger svg > *:nth-child(2) {
|
|
transition: transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
|
|
}
|
|
|
|
.hamburger svg > *:nth-child(3) {
|
|
transition:
|
|
y 0.1s 0.25s ease-in,
|
|
transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19),
|
|
width 0.1s 0.25s ease-in;
|
|
}
|
|
|
|
.hamburger.active svg > *:nth-child(1) {
|
|
opacity: 0;
|
|
y: 11;
|
|
transform: rotate(225deg);
|
|
transition:
|
|
y 0.1s ease-out,
|
|
transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1),
|
|
opacity 0.1s 0.12s ease-out;
|
|
}
|
|
|
|
.hamburger.active svg > *:nth-child(2) {
|
|
transform: rotate(225deg);
|
|
transition: transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
|
|
}
|
|
|
|
.hamburger.active svg > *:nth-child(3) {
|
|
y: 11;
|
|
transform: rotate(135deg);
|
|
transition:
|
|
y 0.1s ease-out,
|
|
transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1),
|
|
width 0.1s ease-out;
|
|
}
|
|
|
|
/* Typography */
|
|
.h1 {
|
|
@apply text-5xl font-bold;
|
|
}
|
|
|
|
.h2 {
|
|
@apply text-4xl font-bold;
|
|
}
|
|
|
|
.h3 {
|
|
@apply text-3xl font-bold;
|
|
}
|
|
|
|
.h4 {
|
|
@apply text-2xl font-bold;
|
|
}
|
|
|
|
@screen md {
|
|
.h1 {
|
|
@apply text-6xl;
|
|
}
|
|
|
|
.h2 {
|
|
@apply text-5xl;
|
|
}
|
|
|
|
.h3 {
|
|
@apply text-4xl;
|
|
}
|
|
}
|
|
|
|
/* Buttons */
|
|
.btn,
|
|
.btn-sm {
|
|
@apply text-sm font-medium inline-flex items-center justify-center border border-transparent rounded-md tracking-normal transition;
|
|
}
|
|
|
|
.btn {
|
|
@apply px-4 py-2;
|
|
}
|
|
|
|
.btn-sm {
|
|
@apply px-2 py-1;
|
|
}
|
|
|
|
/* Forms */
|
|
input[type="search"]::-webkit-search-decoration,
|
|
input[type="search"]::-webkit-search-cancel-button,
|
|
input[type="search"]::-webkit-search-results-button,
|
|
input[type="search"]::-webkit-search-results-decoration {
|
|
-webkit-appearance: none;
|
|
}
|
|
|
|
.form-input,
|
|
.form-textarea,
|
|
.form-multiselect,
|
|
.form-select,
|
|
.form-checkbox,
|
|
.form-radio {
|
|
@apply bg-white border border-zinc-200 focus:border-zinc-400 shadow shadow-black/5;
|
|
}
|
|
|
|
.form-input,
|
|
.form-textarea,
|
|
.form-multiselect,
|
|
.form-select,
|
|
.form-checkbox {
|
|
@apply rounded;
|
|
}
|
|
|
|
.form-input,
|
|
.form-textarea,
|
|
.form-multiselect,
|
|
.form-select {
|
|
@apply text-zinc-600 text-sm px-4 py-2;
|
|
}
|
|
|
|
.form-input,
|
|
.form-textarea {
|
|
@apply placeholder-zinc-400;
|
|
}
|
|
|
|
.form-select {
|
|
@apply pr-10;
|
|
}
|
|
|
|
.form-checkbox,
|
|
.form-radio {
|
|
@apply text-zinc-800;
|
|
}
|
|
|
|
.form-checkbox {
|
|
@apply rounded-sm;
|
|
}
|
|
|
|
/* Chrome, Safari and Opera */
|
|
.no-scrollbar::-webkit-scrollbar {
|
|
display: none;
|
|
}
|
|
|
|
.no-scrollbar {
|
|
-ms-overflow-style: none;
|
|
/* IE and Edge */
|
|
scrollbar-width: none;
|
|
/* Firefox */
|
|
}
|