refactor: make twg badge visible on smaller screens (#4345)
This commit is contained in:
parent
abc4d76099
commit
78770d92f5
62
docs/components/TWGBadge/TWGBadge.module.css
Normal file
62
docs/components/TWGBadge/TWGBadge.module.css
Normal file
@ -0,0 +1,62 @@
|
|||||||
|
.extraContainer {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
margin-top: 0.5rem;
|
||||||
|
text-align: center;
|
||||||
|
background-color: #171717;
|
||||||
|
padding: 1rem;
|
||||||
|
gap: 1rem;
|
||||||
|
border-radius: 0.5rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.extraText {
|
||||||
|
padding-left: 0.5rem;
|
||||||
|
padding-right: 0.5rem;
|
||||||
|
font-weight: bold;
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
|
||||||
|
.extraButton {
|
||||||
|
width: 100%;
|
||||||
|
border: none;
|
||||||
|
padding: 0.5rem 1rem;
|
||||||
|
font-weight: 500;
|
||||||
|
background-color: #f9d85b;
|
||||||
|
transition: transform 0.3s ease, background-color 0.3s ease;
|
||||||
|
}
|
||||||
|
|
||||||
|
.extraButton:hover {
|
||||||
|
transform: scale(1.05);
|
||||||
|
background-color: #fff;
|
||||||
|
}
|
||||||
|
|
||||||
|
:is(html[class~=dark]) .extraContainer {
|
||||||
|
background-color: #87ccef;
|
||||||
|
}
|
||||||
|
|
||||||
|
:is(html[class~=dark]) .extraText {
|
||||||
|
color: #171717;
|
||||||
|
}
|
||||||
|
|
||||||
|
:is(html[class~=dark]) .extraButton {
|
||||||
|
background-color: #171717;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@media (min-width: 1280px) {
|
||||||
|
.visibleOnLarge {
|
||||||
|
display: inherit;
|
||||||
|
}
|
||||||
|
.visibleOnSmall {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (max-width: 1279px) {
|
||||||
|
.visibleOnLarge {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
.visibleOnSmall {
|
||||||
|
display: flex;
|
||||||
|
}
|
||||||
|
}
|
27
docs/components/TWGBadge/TWGBadge.tsx
Normal file
27
docs/components/TWGBadge/TWGBadge.tsx
Normal file
@ -0,0 +1,27 @@
|
|||||||
|
import React from 'react';
|
||||||
|
import styles from './TWGBadge.module.css';
|
||||||
|
|
||||||
|
interface TWGBadgeProps {
|
||||||
|
visibleOnLarge?: boolean;
|
||||||
|
}
|
||||||
|
|
||||||
|
const TWGBadge = ({visibleOnLarge}: TWGBadgeProps) => {
|
||||||
|
const visibilityClass = visibleOnLarge
|
||||||
|
? styles.visibleOnLarge
|
||||||
|
: styles.visibleOnSmall;
|
||||||
|
|
||||||
|
return (
|
||||||
|
<div className={[styles.extraContainer, visibilityClass].join(' ')}>
|
||||||
|
<span className={styles.extraText}>We are TheWidlarzGroup</span>
|
||||||
|
<a
|
||||||
|
target="_blank"
|
||||||
|
href="https://www.thewidlarzgroup.com/?utm_source=rnv&utm_medium=docs#Contact"
|
||||||
|
className={styles.extraButton}
|
||||||
|
rel="noreferrer">
|
||||||
|
Premium support →
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
};
|
||||||
|
|
||||||
|
export default TWGBadge;
|
@ -22,5 +22,14 @@
|
|||||||
"newWindow": true,
|
"newWindow": true,
|
||||||
"href": "https://github.com/TheWidlarzGroup/react-native-video/tree/master/examples"
|
"href": "https://github.com/TheWidlarzGroup/react-native-video/tree/master/examples"
|
||||||
},
|
},
|
||||||
"projects": "Useful projects"
|
"projects": "Useful projects",
|
||||||
}
|
"separator_enterprise": {
|
||||||
|
"type": "separator",
|
||||||
|
"title": ""
|
||||||
|
},
|
||||||
|
"enterprise_support": {
|
||||||
|
"title": "Enterprise Support",
|
||||||
|
"newWindow": true,
|
||||||
|
"href": "https://www.thewidlarzgroup.com/?utm_source=rnv&utm_medium=docs#Contact"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
@ -1,5 +1,6 @@
|
|||||||
import React from 'react';
|
import React from 'react';
|
||||||
import {GoogleAnalytics} from '@next/third-parties/google';
|
import {GoogleAnalytics} from '@next/third-parties/google';
|
||||||
|
import TWGBadge from './components/TWGBadge/TWGBadge';
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
head: (
|
head: (
|
||||||
@ -45,6 +46,15 @@ export default {
|
|||||||
},
|
},
|
||||||
docsRepositoryBase:
|
docsRepositoryBase:
|
||||||
'https://github.com/TheWidlarzGroup/react-native-video/tree/master/docs/',
|
'https://github.com/TheWidlarzGroup/react-native-video/tree/master/docs/',
|
||||||
|
main: ({children}) => (
|
||||||
|
<>
|
||||||
|
{children}
|
||||||
|
<TWGBadge visibleOnLarge={false} />
|
||||||
|
</>
|
||||||
|
),
|
||||||
|
toc: {
|
||||||
|
extraContent: <TWGBadge visibleOnLarge={true} />,
|
||||||
|
},
|
||||||
footer: {
|
footer: {
|
||||||
text: (
|
text: (
|
||||||
<span>
|
<span>
|
||||||
@ -52,61 +62,6 @@ export default {
|
|||||||
</span>
|
</span>
|
||||||
),
|
),
|
||||||
},
|
},
|
||||||
toc: {
|
|
||||||
extraContent: (
|
|
||||||
<>
|
|
||||||
<style>{`
|
|
||||||
:is(html[class~=dark]) .extra-container {
|
|
||||||
background-color: #87ccef;
|
|
||||||
}
|
|
||||||
:is(html[class~=dark]) .extra-text {
|
|
||||||
color: #171717;
|
|
||||||
}
|
|
||||||
:is(html[class~=dark]) .extra-button {
|
|
||||||
background-color: #171717;
|
|
||||||
}
|
|
||||||
.extra-container {
|
|
||||||
display: flex;
|
|
||||||
flex-direction: column;
|
|
||||||
margin-top: 0.5rem;
|
|
||||||
text-align: center;
|
|
||||||
background-color: #171717;
|
|
||||||
padding: 1rem;
|
|
||||||
gap: 1rem;
|
|
||||||
border-radius: 0.5rem;
|
|
||||||
}
|
|
||||||
.extra-text {
|
|
||||||
padding-left: 0.5rem;
|
|
||||||
padding-right: 0.5rem;
|
|
||||||
font-weight: bold;
|
|
||||||
color: #fff;
|
|
||||||
}
|
|
||||||
.extra-button {
|
|
||||||
width: 100%;
|
|
||||||
border: none;
|
|
||||||
padding: 0.5rem 1rem;
|
|
||||||
font-weight: 500;
|
|
||||||
background-color: #f9d85b;
|
|
||||||
transition: transform 0.3s ease, background-color 0.3s ease;
|
|
||||||
}
|
|
||||||
.extra-button:hover {
|
|
||||||
transform: scale(1.05);
|
|
||||||
background-color: #fff;
|
|
||||||
}
|
|
||||||
`}</style>
|
|
||||||
<div className="extra-container">
|
|
||||||
<span className="extra-text">We are TheWidlarzGroup</span>
|
|
||||||
<a
|
|
||||||
target="_blank"
|
|
||||||
href="https://www.thewidlarzgroup.com/?utm_source=rnv&utm_medium=docs#Contact"
|
|
||||||
className="extra-button"
|
|
||||||
rel="noreferrer">
|
|
||||||
Premium support →
|
|
||||||
</a>
|
|
||||||
</div>
|
|
||||||
</>
|
|
||||||
),
|
|
||||||
},
|
|
||||||
|
|
||||||
useNextSeoProps() {
|
useNextSeoProps() {
|
||||||
return {
|
return {
|
||||||
|
Loading…
Reference in New Issue
Block a user