File tree 2 files changed +5
-12
lines changed
2 files changed +5
-12
lines changed Original file line number Diff line number Diff line change @@ -136,3 +136,4 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
136
136
- Fixed search funcitionality on blog page
137
137
- Fixed dev.to images not showing due to them changing image host
138
138
- Fixed styling issue on nav links
139
+ - Fixed contact form message position
Original file line number Diff line number Diff line change @@ -100,22 +100,14 @@ const YellowColon = styled.img`
100
100
` ;
101
101
102
102
const ResponseMessage = styled . div `
103
- position: absolute;
104
- right: 8%;
103
+ position: unset;
105
104
bottom: -5%;
106
- margin: auto ;
105
+ padding: 0 2rem ;
107
106
108
107
${ props => css `
109
- @media (min-width: ${ props . theme . breakpoints . mobile } ) {
110
- position: unset ;
108
+ @media (min-width: ${ props . theme . breakpoints . tablet } ) {
109
+ position: absolute ;
111
110
margin-top: 1rem;
112
- padding: 0 2rem;
113
- }
114
- ` }
115
-
116
- ${ props => css `
117
- @media (min-width: ${ props . theme . breakpoints . smMobile } ) {
118
- max-width: fit-content;
119
111
}
120
112
` }
121
113
` ;
You can’t perform that action at this time.
0 commit comments