forked from stackblitz/bolt.new
-
Notifications
You must be signed in to change notification settings - Fork 4k
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 #282 from thecodacus/ui-background-rays
feat(styling): added ray effects for the UI as decorative elements
- Loading branch information
Showing
8 changed files
with
299 additions
and
112 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
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 |
---|---|---|
@@ -0,0 +1,18 @@ | ||
import styles from './styles.module.scss'; | ||
|
||
const BackgroundRays = () => { | ||
return ( | ||
<div className={`${styles.rayContainer} `}> | ||
<div className={`${styles.lightRay} ${styles.ray1}`}></div> | ||
<div className={`${styles.lightRay} ${styles.ray2}`}></div> | ||
<div className={`${styles.lightRay} ${styles.ray3}`}></div> | ||
<div className={`${styles.lightRay} ${styles.ray4}`}></div> | ||
<div className={`${styles.lightRay} ${styles.ray5}`}></div> | ||
<div className={`${styles.lightRay} ${styles.ray6}`}></div> | ||
<div className={`${styles.lightRay} ${styles.ray7}`}></div> | ||
<div className={`${styles.lightRay} ${styles.ray8}`}></div> | ||
</div> | ||
); | ||
}; | ||
|
||
export default BackgroundRays; |
Oops, something went wrong.