mirror of
https://github.com/Damillora/Shian.git
synced 2024-11-25 02:37:32 +00:00
25 lines
448 B
SCSS
25 lines
448 B
SCSS
.project-item {
|
|
padding: 1rem;
|
|
width: 100%;
|
|
display: flex;
|
|
flex-direction: row;
|
|
@include transition;
|
|
min-height: 12rem;
|
|
|
|
&:hover {
|
|
background-color: var(--highlight-bg-color);
|
|
}
|
|
|
|
&__image {
|
|
width: 25%;
|
|
display: flex;
|
|
flex-direction: col;
|
|
align-items: center;
|
|
justify-content: center;
|
|
margin-right: 2rem;
|
|
}
|
|
|
|
&__text {
|
|
width: 75%;
|
|
}
|
|
} |