Skip to content

Commit

Permalink
chore: update some css
Browse files Browse the repository at this point in the history
  • Loading branch information
mafewtm committed Jul 26, 2024
1 parent 76db1dd commit 41dd1a5
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 16 deletions.
2 changes: 1 addition & 1 deletion web/src/components/carousel/Carousel.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export default function Media() {

return (
<div className={classes.container}>
<Carousel className={classes.carousel} slideSize='100%' plugins={[autoplay.current]} draggable={false} withControls={false} loop >
<Carousel className={classes.carousel} slideSize='100%' plugins={[autoplay.current]} draggable={false} loop withControls={false}>
{slides}
</Carousel>
</div>
Expand Down
1 change: 0 additions & 1 deletion web/src/components/carousel/carousel.module.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
.container {
height: 100%;
display: flex;
opacity: 0.6;
}
Expand Down
13 changes: 1 addition & 12 deletions web/src/components/media/media.module.css
Original file line number Diff line number Diff line change
@@ -1,15 +1,4 @@
.container {
width: 100%;
height: 100%;
object-fit: cover;
position: fixed;
opacity: 0.6;
left: 0;
right: 0;
top: 0;
bottom: 0;
z-index: -1;
}


.mute {
position: fixed !important;
Expand Down
2 changes: 1 addition & 1 deletion web/src/global.css
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@200;300;400;500;600;700&display=swap');

:root {
#root {
height: 100%;
}

Expand Down
3 changes: 2 additions & 1 deletion web/src/index.module.css
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
.container {
height: 100%;
width: 100%;;
width: 100%;
display: flex;
justify-content: center;
align-items: center;
background-color: var(--mantine-color-dark-8);
}

.main {
Expand Down

0 comments on commit 41dd1a5

Please sign in to comment.