AMPERION_Webpage/themes/airspace-hugo/assets/scss/templates/_about.scss
astosic 30fb9c0827 Refactor SCSS styles in common and about templates
- 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.
2025-08-02 01:31:47 +02:00

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);
}
}
}