Skip to content

Commit

Permalink
Styling
Browse files Browse the repository at this point in the history
  • Loading branch information
HazAT committed Nov 17, 2023
1 parent 0ce63cc commit 7f24326
Show file tree
Hide file tree
Showing 5 changed files with 2,817 additions and 1,687 deletions.
3 changes: 1 addition & 2 deletions packages/core/src/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,10 @@
@apply fixed flex h-screen w-screen flex-col overflow-auto bg-black bg-opacity-50 backdrop-blur-sm backdrop-filter;
z-index: 999998;
padding: 2.5vh;
padding-bottom: 22vh;
}

.sentry-debugger {
@apply flex flex-col overflow-auto rounded-lg bg-indigo-900 font-sans text-white shadow-xl;
@apply flex h-full flex-col overflow-auto rounded-lg bg-indigo-900 font-sans text-white shadow-xl;
}

/* .sentry-debugger .tree li {
Expand Down
1 change: 1 addition & 0 deletions packages/website/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
"@astrojs/starlight": "^0.11.2",
"@astrojs/starlight-tailwind": "^2.0.0",
"@astrojs/tailwind": "^5.0.2",
"@fontsource/raleway": "^5.0.8",
"@sentry/astro": "^7.80.0",
"astro": "^3.5.4",
"sharp": "^0.32.6",
Expand Down
10 changes: 9 additions & 1 deletion packages/website/src/tailwind.css
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
@tailwind base;
@tailwind components;
@tailwind utilities;
@tailwind utilities;

.site-title {
@apply font-raleway text-2xl font-light uppercase tracking-widest text-white;
}

header.header {
@apply bg-black bg-opacity-50 backdrop-blur-sm backdrop-filter;
}
4 changes: 4 additions & 0 deletions packages/website/tailwind.config.mjs
Original file line number Diff line number Diff line change
@@ -1,11 +1,15 @@
import starlightPlugin from '@astrojs/starlight-tailwind';
import typographyPlugin from '@tailwindcss/typography';
const defaultTheme = require('tailwindcss/defaultTheme');

/** @type {import('tailwindcss').Config} */
export default {
content: ['./src/**/*.{astro,html,js,jsx,md,mdx,svelte,ts,tsx,vue}'],
theme: {
extend: {
fontFamily: {
raleway: ['Raleway', ...defaultTheme.fontFamily.sans],
},
animation: {
fadeIn: '0.5s fadeIn forwards',
fadeOut: '0.5s fadeOut forwards',
Expand Down
Loading

0 comments on commit 7f24326

Please sign in to comment.