15 lines
186 B
CSS
15 lines
186 B
CSS
.image-wrapper {
|
|
position: relative;
|
|
}
|
|
|
|
.overlay {
|
|
position: absolute;
|
|
|
|
/* center overlay text */
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
|
|
inset: 0;
|
|
}
|