- Removed unused styles and nested selectors from _common.scss to streamline the code. - Cleaned up the .about section in _about.scss by eliminating redundant styles for headings and paragraphs. - Improved overall readability and maintainability of the SCSS files.
17 lines
200 B
SCSS
17 lines
200 B
SCSS
.about{
|
|
|
|
|
|
.about-img {
|
|
overflow:hidden;
|
|
|
|
&:hover img {
|
|
transform: scale3D(1.1,1.1,1);
|
|
}
|
|
|
|
img {
|
|
opacity: .6;
|
|
@include transition (all, 0.5s, ease-out);
|
|
}
|
|
}
|
|
|
|
}
|