Changed to relative units (rem, em) where possible
Exceptions being borders
This commit is contained in:
parent
beb8785ce6
commit
b23c7196a6
9 changed files with 27 additions and 29 deletions
|
@ -17,9 +17,8 @@ const GlobalStyle = createGlobalStyle`
|
||||||
`;
|
`;
|
||||||
|
|
||||||
const AppContainer = styled.div`
|
const AppContainer = styled.div`
|
||||||
max-width: 80%;
|
max-width: 85%;
|
||||||
margin: auto;
|
margin: auto;
|
||||||
padding: 10px;
|
|
||||||
`;
|
`;
|
||||||
|
|
||||||
const App = () => (
|
const App = () => (
|
||||||
|
|
|
@ -10,7 +10,7 @@ const AppContainer = styled.div`
|
||||||
`;
|
`;
|
||||||
|
|
||||||
const IconContainer = styled.div`
|
const IconContainer = styled.div`
|
||||||
margin-right: 0.5vh;
|
margin-right: 0.5rem;
|
||||||
`;
|
`;
|
||||||
|
|
||||||
const DetailsContainer = styled.div`
|
const DetailsContainer = styled.div`
|
||||||
|
|
|
@ -5,7 +5,6 @@ import { ItemList, Item, SubHeadline } from './elements';
|
||||||
|
|
||||||
const CategoryHeadline = styled(SubHeadline)`
|
const CategoryHeadline = styled(SubHeadline)`
|
||||||
padding-top: 1rem;
|
padding-top: 1rem;
|
||||||
font-size: 1.25rem;
|
|
||||||
`;
|
`;
|
||||||
|
|
||||||
const CategoryContainer = styled.div`
|
const CategoryContainer = styled.div`
|
||||||
|
|
|
@ -14,8 +14,8 @@ const Bookmark = styled.a`
|
||||||
font-weight: 400;
|
font-weight: 400;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
color: ${selectedTheme.accentColor};
|
color: ${selectedTheme.accentColor};
|
||||||
padding-top: 10px;
|
padding-top: 0.75rem;
|
||||||
font-size: 14px;
|
font-size: 0.9rem;
|
||||||
|
|
||||||
&:hover {
|
&:hover {
|
||||||
text-decoration: underline;
|
text-decoration: underline;
|
||||||
|
|
|
@ -20,7 +20,7 @@ export const Headline = styled.h2`
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
font-weight: 900;
|
font-weight: 900;
|
||||||
text-transform: uppercase;
|
text-transform: uppercase;
|
||||||
margin: 0px;
|
margin: 0;
|
||||||
font-size: 1.5rem;
|
font-size: 1.5rem;
|
||||||
color: ${selectedTheme.mainColor};
|
color: ${selectedTheme.mainColor};
|
||||||
`;
|
`;
|
||||||
|
|
|
@ -9,14 +9,14 @@ const GreeterContainer = styled.div`
|
||||||
|
|
||||||
const GreetText = styled.h1`
|
const GreetText = styled.h1`
|
||||||
font-weight: 900;
|
font-weight: 900;
|
||||||
font-size: 45px;
|
font-size: 3rem;
|
||||||
margin: 0.5rem 0;
|
margin: 0.5rem 0;
|
||||||
color: ${selectedTheme.mainColor};
|
color: ${selectedTheme.mainColor};
|
||||||
`;
|
`;
|
||||||
|
|
||||||
const DateText = styled.h3`
|
const DateText = styled.h3`
|
||||||
font-weight: 400;
|
font-weight: 400;
|
||||||
font-size: 15px;
|
font-size: 1rem;
|
||||||
text-transform: uppercase;
|
text-transform: uppercase;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
color: ${selectedTheme.accentColor};
|
color: ${selectedTheme.accentColor};
|
||||||
|
|
|
@ -7,7 +7,7 @@ import selectedTheme from './themeManager';
|
||||||
|
|
||||||
const SearchInput = styled.input`
|
const SearchInput = styled.input`
|
||||||
width: 100%;
|
width: 100%;
|
||||||
font-size: 16px;
|
font-size: 1rem;
|
||||||
border: none;
|
border: none;
|
||||||
border-bottom: 1px solid ${selectedTheme.accentColor};
|
border-bottom: 1px solid ${selectedTheme.accentColor};
|
||||||
background: none;
|
background: none;
|
||||||
|
@ -18,7 +18,7 @@ const SearchInput = styled.input`
|
||||||
const useSearchProviders = () => {
|
const useSearchProviders = () => {
|
||||||
const [searchProviders, setSearchProviders] = useState({
|
const [searchProviders, setSearchProviders] = useState({
|
||||||
providers: [],
|
providers: [],
|
||||||
error: false
|
error: false,
|
||||||
});
|
});
|
||||||
|
|
||||||
const fetchSearchProviders = useCallback(() => {
|
const fetchSearchProviders = useCallback(() => {
|
||||||
|
@ -26,10 +26,10 @@ const useSearchProviders = () => {
|
||||||
? fetch('/data/search.json').then(handleResponse)
|
? fetch('/data/search.json').then(handleResponse)
|
||||||
: import('./data/search.json')
|
: import('./data/search.json')
|
||||||
)
|
)
|
||||||
.then(jsonResponse => {
|
.then((jsonResponse) => {
|
||||||
setSearchProviders({ ...jsonResponse, error: false });
|
setSearchProviders({ ...jsonResponse, error: false });
|
||||||
})
|
})
|
||||||
.catch(error => {
|
.catch((error) => {
|
||||||
setSearchProviders({ providers: [], error: error.message });
|
setSearchProviders({ providers: [], error: error.message });
|
||||||
});
|
});
|
||||||
}, []);
|
}, []);
|
||||||
|
@ -42,12 +42,12 @@ const useSearchProviders = () => {
|
||||||
|
|
||||||
const SearchBar = () => {
|
const SearchBar = () => {
|
||||||
const {
|
const {
|
||||||
searchProviders: { providers, error }
|
searchProviders: { providers, error },
|
||||||
} = useSearchProviders();
|
} = useSearchProviders();
|
||||||
|
|
||||||
let [input, setInput] = useState();
|
let [input, setInput] = useState();
|
||||||
|
|
||||||
const handleSearchQuery = e => {
|
const handleSearchQuery = (e) => {
|
||||||
var query = input;
|
var query = input;
|
||||||
|
|
||||||
console.log(query);
|
console.log(query);
|
||||||
|
@ -61,7 +61,7 @@ const SearchBar = () => {
|
||||||
e.preventDefault();
|
e.preventDefault();
|
||||||
};
|
};
|
||||||
|
|
||||||
const handleQueryWithProvider = query => {
|
const handleQueryWithProvider = (query) => {
|
||||||
let queryArray = query.split(' ');
|
let queryArray = query.split(' ');
|
||||||
let prefix = queryArray[0];
|
let prefix = queryArray[0];
|
||||||
queryArray.shift();
|
queryArray.shift();
|
||||||
|
@ -69,7 +69,7 @@ const SearchBar = () => {
|
||||||
let searchQuery = queryArray.join(' ');
|
let searchQuery = queryArray.join(' ');
|
||||||
|
|
||||||
let providerFound = false;
|
let providerFound = false;
|
||||||
providers.forEach(provider => {
|
providers.forEach((provider) => {
|
||||||
if (provider.prefix === prefix) {
|
if (provider.prefix === prefix) {
|
||||||
providerFound = true;
|
providerFound = true;
|
||||||
window.location = provider.url + searchQuery;
|
window.location = provider.url + searchQuery;
|
||||||
|
@ -81,11 +81,11 @@ const SearchBar = () => {
|
||||||
};
|
};
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<form onSubmit={e => handleSearchQuery(e)}>
|
<form onSubmit={(e) => handleSearchQuery(e)}>
|
||||||
{error && <ErrorMessage>{error}</ErrorMessage>}
|
{error && <ErrorMessage>{error}</ErrorMessage>}
|
||||||
<SearchInput
|
<SearchInput
|
||||||
type="text"
|
type="text"
|
||||||
onChange={e => setInput(e.target.value)}
|
onChange={(e) => setInput(e.target.value)}
|
||||||
></SearchInput>
|
></SearchInput>
|
||||||
<button type="submit" hidden />
|
<button type="submit" hidden />
|
||||||
</form>
|
</form>
|
||||||
|
|
|
@ -64,7 +64,7 @@ const SelectorStyle = {
|
||||||
fontWeight: '500',
|
fontWeight: '500',
|
||||||
color: selectedTheme.mainColor,
|
color: selectedTheme.mainColor,
|
||||||
textTransform: 'uppercase',
|
textTransform: 'uppercase',
|
||||||
width: '200px',
|
width: '12rem',
|
||||||
background: 'none',
|
background: 'none',
|
||||||
borderRadius: '0px',
|
borderRadius: '0px',
|
||||||
border: '1px solid ' + selectedTheme.mainColor,
|
border: '1px solid ' + selectedTheme.mainColor,
|
||||||
|
@ -77,7 +77,7 @@ const SelectorStyle = {
|
||||||
...provided,
|
...provided,
|
||||||
backgroundColor: selectedTheme.backgroundColor,
|
backgroundColor: selectedTheme.backgroundColor,
|
||||||
border: '1px solid ' + selectedTheme.mainColor,
|
border: '1px solid ' + selectedTheme.mainColor,
|
||||||
borderRadius: '0px',
|
borderRadius: 0,
|
||||||
boxShadow: 0,
|
boxShadow: 0,
|
||||||
}),
|
}),
|
||||||
option: (provided) => ({
|
option: (provided) => ({
|
||||||
|
@ -85,7 +85,7 @@ const SelectorStyle = {
|
||||||
fontWeight: '500',
|
fontWeight: '500',
|
||||||
color: selectedTheme.mainColor,
|
color: selectedTheme.mainColor,
|
||||||
textTransform: 'uppercase',
|
textTransform: 'uppercase',
|
||||||
borderRadius: '0px',
|
borderRadius: 0,
|
||||||
boxShadow: 0,
|
boxShadow: 0,
|
||||||
backgroundColor: selectedTheme.backgroundColor,
|
backgroundColor: selectedTheme.backgroundColor,
|
||||||
'&:hover': {
|
'&:hover': {
|
||||||
|
|
|
@ -57,7 +57,7 @@ export function register(config) {
|
||||||
function registerValidSW(swUrl, config) {
|
function registerValidSW(swUrl, config) {
|
||||||
navigator.serviceWorker
|
navigator.serviceWorker
|
||||||
.register(swUrl)
|
.register(swUrl)
|
||||||
.then(registration => {
|
.then((registration) => {
|
||||||
registration.onupdatefound = () => {
|
registration.onupdatefound = () => {
|
||||||
const installingWorker = registration.installing;
|
const installingWorker = registration.installing;
|
||||||
if (installingWorker == null) {
|
if (installingWorker == null) {
|
||||||
|
@ -93,7 +93,7 @@ function registerValidSW(swUrl, config) {
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
})
|
})
|
||||||
.catch(error => {
|
.catch((error) => {
|
||||||
console.error('Error during service worker registration:', error);
|
console.error('Error during service worker registration:', error);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
@ -101,9 +101,9 @@ function registerValidSW(swUrl, config) {
|
||||||
function checkValidServiceWorker(swUrl, config) {
|
function checkValidServiceWorker(swUrl, config) {
|
||||||
// Check if the service worker can be found. If it can't reload the page.
|
// Check if the service worker can be found. If it can't reload the page.
|
||||||
fetch(swUrl, {
|
fetch(swUrl, {
|
||||||
headers: { 'Service-Worker': 'script' }
|
headers: { 'Service-Worker': 'script' },
|
||||||
})
|
})
|
||||||
.then(response => {
|
.then((response) => {
|
||||||
// Ensure service worker exists, and that we really are getting a JS file.
|
// Ensure service worker exists, and that we really are getting a JS file.
|
||||||
const contentType = response.headers.get('content-type');
|
const contentType = response.headers.get('content-type');
|
||||||
if (
|
if (
|
||||||
|
@ -112,7 +112,7 @@ function checkValidServiceWorker(swUrl, config) {
|
||||||
contentType.indexOf('javascript') === -1)
|
contentType.indexOf('javascript') === -1)
|
||||||
) {
|
) {
|
||||||
// No service worker found. Probably a different app. Reload the page.
|
// No service worker found. Probably a different app. Reload the page.
|
||||||
navigator.serviceWorker.ready.then(registration => {
|
navigator.serviceWorker.ready.then((registration) => {
|
||||||
registration.unregister().then(() => {
|
registration.unregister().then(() => {
|
||||||
window.location.reload();
|
window.location.reload();
|
||||||
});
|
});
|
||||||
|
@ -132,10 +132,10 @@ function checkValidServiceWorker(swUrl, config) {
|
||||||
export function unregister() {
|
export function unregister() {
|
||||||
if ('serviceWorker' in navigator) {
|
if ('serviceWorker' in navigator) {
|
||||||
navigator.serviceWorker.ready
|
navigator.serviceWorker.ready
|
||||||
.then(registration => {
|
.then((registration) => {
|
||||||
registration.unregister();
|
registration.unregister();
|
||||||
})
|
})
|
||||||
.catch(error => {
|
.catch((error) => {
|
||||||
console.error(error.message);
|
console.error(error.message);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue