File tree Expand file tree Collapse file tree
components/decorations/Stick Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ @use ' @/styles/mixins' as * ;
2+
3+ .homeStick {
4+ right : 0 ;
5+ position : absolute ;
6+ transform : translate (-10rem , -5rem );
7+
8+ @include desktop-breakpoint-plus-max {
9+ transform : translate (-50% , -5rem );
10+ width : 30% ;
11+ }
12+ @include desktop-breakpoint-minus {
13+ display : none ;
14+ }
15+ }
File renamed without changes.
Original file line number Diff line number Diff line change @@ -2,6 +2,8 @@ import TwoColumn from '@/components/containers/TwoColumn';
22import { CardsColumns } from '@/components/containers/CardColumns' ;
33import Bracket from '@/components/decorations/Bracket' ;
44import bracketStyles from '@/components/decorations/Bracket/Bracket.module.scss' ;
5+ import Stick from '@/components/decorations/Stick' ;
6+ import stickStyles from '@/components/decorations/Stick/Stick.module.scss' ;
57import RevealContentContainer from '@/components/containers/RevealContentContainer' ;
68import { useTheme } from 'styled-components' ;
79
@@ -67,6 +69,7 @@ export default function Home() {
6769 </ RevealContentContainer >
6870
6971 < RevealContentContainer >
72+ < Stick className = { stickStyles . homeStick } />
7073 < TwoColumn
7174 title = 'Nonprofit?'
7275 content = 'Web Dev Path can help your nonprofit with web projects of various sizes. Connect with us to find out how.'
Original file line number Diff line number Diff line change 3232 }
3333}
3434
35+ @mixin desktop-breakpoint-plus-max {
36+ @media (max-width : $desktop-breakpoint-plus ) {
37+ @content ;
38+ }
39+ }
40+
3541@mixin medium-desktop {
3642 @media (min-width : $medium-desktop-breakpoint ) {
3743 @content ;
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments