frontpage/styles/ProjectModal.module.css

20 lines
320 B
CSS
Raw Normal View History

2022-01-14 14:27:19 +01:00
.modal {
z-index: 99;
position: fixed;
top: 0;
left: 0;
width: 100vw;
height: 100vh;
padding: 5%;
background: transparent;
}
.modalContainer {
2022-02-04 23:29:26 +01:00
background: #272b30;
2022-01-14 14:27:19 +01:00
color: #ccc;
width: 100%;
height: 100%;
padding: 20px;
border-radius: 20px;
2022-02-04 23:29:26 +01:00
overflow-y: auto;
2022-01-14 14:27:19 +01:00
}