Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 0 additions & 13 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,19 +3,6 @@
"version": "1.15.0",
"type": "module",
"license": "ISC",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist",
"README.md"
],
"sideEffects": [
"**/*.css"
],
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"scripts": {
"dev": "vite",
"build": "vite build",
Expand Down
2 changes: 1 addition & 1 deletion src/components/card/theme.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,4 +37,4 @@ const card = {

export type CardUiOptimized = typeof card

export default card
export default card
2 changes: 2 additions & 0 deletions src/tailwind/base/scrollbar.css
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
@tailwind base;

@layer base {
* {
scrollbar-width: thin;
Expand Down
10 changes: 6 additions & 4 deletions src/tailwind/base/typography-elements.css
Original file line number Diff line number Diff line change
@@ -1,15 +1,17 @@
@tailwind base;

@layer base {
body {
/*body {
@apply font-normal;
}

h1 { @apply text-title-display; }
h2 { @apply text-title-lg; }
h3 { @apply text-title-md; }
h4 { @apply text-title-sm; }
h5 { @apply text-subtitle; }
h5 { @apply text-subtitle; }*/

a, .text-link {
/*a, .text-link {
@apply underline decoration-solid;
@apply transition-colors text-fg-link-default;
text-decoration-skip-ink: auto;
Expand All @@ -26,5 +28,5 @@

b, strong {
font-weight: var(--text-fontweight-bold);
}
}*/
}
4 changes: 0 additions & 4 deletions src/tailwind/presets/layout.preset.ts
Original file line number Diff line number Diff line change
Expand Up @@ -84,10 +84,6 @@ const preset: Partial<Config> = {
width: {
'84': '21rem',
},
maxWidth: {
layout: "var(--main-layout-width)",
'full-mob': "calc(100% - 2rem)",
},
opacity: {
'80': '.80',
}
Expand Down
1 change: 0 additions & 1 deletion src/themes/alpa/style/tailwind.css
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,5 @@
@import "../../../tailwind/base/typography-elements.css";
@import "../../../tailwind/base/scrollbar.css";

@tailwind base;
@tailwind components;
@tailwind utilities;
Loading