Skip to content

Commit 88f6f7b

Browse files
committed
task ready to upload
1 parent fe83bd1 commit 88f6f7b

2 files changed

Lines changed: 18 additions & 4 deletions

File tree

docs/src/pages/components/HeaderButtons.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,13 @@ import clsx from 'clsx'
55
export 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

docs/src/pages/index.module.css

Lines changed: 16 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,12 +48,26 @@
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+
}

0 commit comments

Comments
 (0)