mirror of
https://github.com/sonr-io/sonr.git
synced 2026-08-03 09:51:39 +00:00
- **refactor: remove unused auth components** - **refactor: improve devbox configuration and deployment process** - **refactor: improve devnet and testnet setup** - **fix: update templ version to v0.2.778** - **refactor: rename pkl/net.matrix to pkl/matrix.net** - **refactor: migrate webapp components to nebula** - **refactor: protobuf types** - **chore: update dependencies for improved security and stability** - **feat: implement landing page and vault gateway servers** - **refactor: Migrate data models to new module structure and update related files** - **feature/1121-implement-ucan-validation** - **refactor: Replace hardcoded constants with model types in attns.go** - **feature/1121-implement-ucan-validation** - **chore: add origin Host struct and update main function to handle multiple hosts** - **build: remove unused static files from dwn module** - **build: remove unused static files from dwn module** - **refactor: Move DWN models to common package** - **refactor: move models to pkg/common** - **refactor: move vault web app assets to embed module** - **refactor: update session middleware import path** - **chore: configure port labels and auto-forwarding behavior** - **feat: enhance devcontainer configuration** - **feat: Add UCAN middleware for Echo with flexible token validation** - **feat: add JWT middleware for UCAN authentication** - **refactor: update package URI and versioning in PklProject files** - **fix: correct sonr.pkl import path** - **refactor: move JWT related code to auth package** - **feat: introduce vault configuration retrieval and management** - **refactor: Move vault components to gateway module and update file paths** - **refactor: remove Dexie and SQLite database implementations** - **feat: enhance frontend with PWA features and WASM integration** - **feat: add Devbox features and streamline Dockerfile** - **chore: update dependencies to include TigerBeetle** - **chore(deps): update go version to 1.23** - **feat: enhance devnet setup with PATH environment variable and updated PWA manifest** - **fix: upgrade tigerbeetle-go dependency and remove indirect dependency** - **feat: add PostgreSQL support to devnet and testnet deployments** - **refactor: rename keyshare cookie to token cookie** - **feat: upgrade Go version to 1.23.3 and update dependencies** - **refactor: update devnet and testnet configurations** - **feat: add IPFS configuration for devnet** - **I'll help you update the ipfs.config.pkl to include all the peers from the shell script. Here's the updated configuration:** - **refactor: move mpc package to crypto directory** - **feat: add BIP32 support for various cryptocurrencies** - **feat: enhance ATN.pkl with additional capabilities** - **refactor: simplify smart account and vault attenuation creation** - **feat: add new capabilities to the Attenuation type** - **refactor: Rename MPC files for clarity and consistency** - **feat: add DIDKey support for cryptographic operations** - **feat: add devnet and testnet deployment configurations** - **fix: correct key derivation in bip32 package** - **refactor: rename crypto/bip32 package to crypto/accaddr** - **fix: remove duplicate indirect dependency** - **refactor: move vault package to root directory** - **refactor: update routes for gateway and vault** - **refactor: remove obsolete web configuration file** - **refactor: remove unused TigerBeetle imports and update host configuration** - **refactor: adjust styles directory path** - **feat: add broadcastTx and simulateTx functions to gateway** - **feat: add PinVault handler**
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 */
|
|
}
|