File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -5,13 +5,13 @@ import clsx from 'clsx'
55export const HeaderButtons = ( ) => (
66 < div className = { styles . buttonsContainer } >
77 < Link
8- className = { clsx ( 'button button--secondary button--lg' , styles . buttonReadDocs ) }
8+ className = { clsx ( 'button button--secondary button--lg' , styles . button , styles . buttonReadDocs ) }
99 to = "/docs/overview"
1010 >
1111 Read docs
1212 </ Link >
1313 < Link
14- className = { clsx ( 'button button--secondary button--lg' , styles . buttonTryIt ) }
14+ className = { clsx ( 'button button--secondary button--lg' , styles . button , styles . buttonTryIt ) }
1515 to = "https://binarapps.online/sign-in"
1616 >
1717 Try it
Original file line number Diff line number Diff line change 4848 gap : 3rem ;
4949}
5050
51- .buttonReadDocs {
51+ .button {
5252 width : 160px ;
53+ height : 48px ;
54+ display : flex;
55+ align-items : center;
56+ justify-content : center;
5357}
5458
5559.buttonTryIt {
56- width : 160px ;
5760 background-color : # 2f2f2f ;
5861 color : # ffffff !important ;
5962}
63+
64+ @media screen and (max-width : 600px ) {
65+ .buttonsContainer {
66+ flex-direction : column;
67+ gap : 1rem ;
68+ }
69+
70+ .button {
71+ width : 100% ;
72+ }
73+ }
You can’t perform that action at this time.
0 commit comments