-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #241 from stabilitydao/4-vault
UI kit: breadcrumbs + navbar + table + fitlers
- Loading branch information
Showing
40 changed files
with
974 additions
and
806 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -41,15 +41,18 @@ const { | |
<meta name="twitter:card" content="summary_large_image" /> | ||
<meta name="twitter:title" content={metaTitle} /> | ||
<meta name="twitter:description" content={metaDescription} /> | ||
<meta property="og:image" content={img} /> | ||
<meta property="og:image" content={img} /> | ||
<meta property="twitter:image:height" content="100" /> | ||
<meta property="twitter:image:width" content="100" /> | ||
<meta property="og:image:alt" content={metaTitle} /> | ||
<meta property="og:image:alt" content={metaTitle} /> | ||
<meta property="og:type" content="object" /> | ||
<meta property="og:title" content={metaTitle} /> | ||
<meta property="og:url" content={metaUrl} /> | ||
<meta property="og:description" content={metaDescription} /> | ||
<link rel="icon" type="image/svg+xml" href="/favicon.png" /> | ||
<link rel="preconnect" href="https://fonts.googleapis.com"> | ||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin> | ||
<link href="https://fonts.googleapis.com/css2?family=Manrope:[email protected]&display=swap" rel="stylesheet"> | ||
<meta name="generator" content={Astro.generator} /> | ||
<title>{title} - Stability</title> | ||
<!-- <ViewTransitions /> --> | ||
|
@@ -115,7 +118,7 @@ const { | |
} | ||
html { | ||
font-family: system-ui, sans-serif; | ||
background: #0C0C1C; | ||
background: #0C0620; | ||
background-size: 224px; | ||
} | ||
body { | ||
|
@@ -132,7 +135,6 @@ const { | |
.title { | ||
display: flex; | ||
align-items: center; | ||
padding-bottom: 4px; | ||
} | ||
.title > a { | ||
color: #a995ff; | ||
|
@@ -153,34 +155,35 @@ const { | |
.menu { | ||
display: flex; | ||
justify-content: center; | ||
gap:12px; | ||
} | ||
.menu-nav a { | ||
width: 100%; | ||
} | ||
@media screen and (max-width: 600px) { | ||
@media screen and (max-width: 767px) { | ||
.menu { | ||
display: none; | ||
} | ||
} | ||
.menu > a { | ||
margin: 0; | ||
min-width: 90px; | ||
height: 60px; | ||
height: 40px; | ||
color: #fcf3f6; | ||
display: flex; | ||
align-self: center; | ||
align-items: center; | ||
justify-content: center; | ||
text-decoration: none; | ||
font-size: 17px; | ||
border-bottom: 3px solid transparent; | ||
padding-top: 3px; | ||
font-weight: 600; | ||
padding: 10px 16px; | ||
} | ||
.menu > a.active { | ||
border-bottom: 3px solid #9b7ff7; | ||
background: #2B1570; | ||
border-radius: 16px; | ||
} | ||
.menu > a:hover { | ||
background-color: #3e294c; | ||
border-radius: 16px; | ||
background-color: #3D1E9F ; | ||
} | ||
|
||
main { | ||
|
Oops, something went wrong.