36 lines
No EOL
746 B
CSS
36 lines
No EOL
746 B
CSS
.homeContainer {
|
|
position: relative;
|
|
background-color: #F7F7F7;
|
|
min-height: calc(100vh - 15px);
|
|
max-height: calc(100vh - 15px);
|
|
width: 100%;
|
|
font-family: Arial, Helvetica, sans-serif;
|
|
z-index: 0;
|
|
overflow: hidden; /* just in case */
|
|
}
|
|
|
|
.homeContainer::before {
|
|
content: "";
|
|
position: absolute;
|
|
top: 0; left: 0;
|
|
width: 100%; height: 100%;
|
|
background-image: url('../../assets/background.png');
|
|
background-repeat: repeat;
|
|
background-size: 50px;
|
|
opacity: 0.2; /* Adjust this to your liking */
|
|
z-index: -1;
|
|
pointer-events: none;
|
|
}
|
|
|
|
.homeSidebar {
|
|
height: auto;
|
|
}
|
|
.homeContent {
|
|
height: 100vh;
|
|
width: 100%;
|
|
}
|
|
|
|
.body {
|
|
display: flex;
|
|
max-width: 100vw;
|
|
} |