Skip to content
Merged
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
4 changes: 2 additions & 2 deletions hyperdrive/packages/contacts/pkg/ui/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

<body class="bg-iris text-white">
<svg id="large-background" viewBox="0 0 393 356" fill="none" xmlns="http://www.w3.org/2000/svg"
class="absolute bottom-0 left-0 w-screen bg-center bg-cover pointer-events-none z-0">
class="absolute bottom-0 left-0 w-screen bg-center bg-cover pointer-events-none z-0 opacity-20">
<g clip-path="url(#clip0_1483_2725)">
<path
d="M339.268 685.316L339.268 535.649L454.813 461.579L454.813 396.535L512.8 359.361C533.086 346.359 559.152 346.359 579.438 359.361L658.066 409.776"
Expand Down Expand Up @@ -91,4 +91,4 @@ <h1 class="text-2xl font-bold prose" style="align-self: start;">Contacts</h1>
<script src="/contacts:contacts:sys/script.js"></script>
</body>

</html>
</html>
Original file line number Diff line number Diff line change
Expand Up @@ -297,9 +297,14 @@ export const HomeScreen: React.FC = () => {
data-is-dark-mode={isDarkMode}
>

{/* {backgroundImage && (
<div className="absolute inset-0 bg-black/5" />
)} */}
{backgroundImage && (
<div className="absolute inset-0 opacity-20" style={{
backgroundImage: `url(${backgroundImage})`,
backgroundSize: 'cover',
backgroundPosition: 'center',
backgroundRepeat: 'no-repeat',
}} />
)}


<div
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import classNames from "classnames";

export const LargeBackgroundVector = ({ className }: { className?: string }) => {
return (
<div className={classNames('absolute bottom-0 left-0 w-screen z-0 pointer-events-none', className)}>
<div className={classNames('absolute bottom-0 left-0 w-screen z-0 pointer-events-none opacity-20', className)}>

<svg className="w-full h-full" viewBox="0 0 393 437" fill="none" xmlns="http://www.w3.org/2000/svg"
version="1.1" id="register-ui--svg6">
Expand Down