Skip to content

Commit

Permalink
style: adjusted spacing for latency slider, trial blown up favicon
Browse files Browse the repository at this point in the history
Co-authored-by: Alex Sklar <[email protected]>
Co-authored-by: Erik Margetis <[email protected]>
  • Loading branch information
3 people committed Apr 26, 2024
1 parent 421bf9b commit 5b1078c
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion docusaurus.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ const config = {
title: 'Syncosaurus',
tagline:
'An open-source framework for real-time, collaborative web applications',
favicon: 'img/favicon.ico',
favicon: 'img/favicon2.ico',

// Set the production url of your site here
url: 'https://syncosaurus.github.io',
Expand Down
4 changes: 2 additions & 2 deletions src/components/LatencySlider/LatencySlider.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ export default function LatencySlider() {
return (
<div className="flex justify-start w-auto">
<FormControl sx={{ display: 'inline-block' }}>
<FormHelperText sx={{ fontSize: '17px' }}>Latency</FormHelperText>
<FormHelperText sx={{ fontSize: '16.5px', alignItems: 'start' }}>Latency</FormHelperText>
<Select
sx={{ width: '120px', height: '30px' }}
sx={{ width: '120px', height: '30px', alignItems: 'center' }}
value={secondSliderlatency}
onChange={handleLatencyChange}
>
Expand Down
2 changes: 1 addition & 1 deletion src/components/LatencySlider/VerticalSlider.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ export default function VerticalSlider({
<Slider
orientation="vertical"
value={currentValue}
sx={{ marginBottom: '4em' }}
sx={{ marginBottom: '2rem', marginRight: '5rem', marginLeft: `${delay === 0 ? '3rem' : null}` }}
delay={delay}
onChange={delay === 0 ? handleChange : null}
className={delay === 0 ? '' : 'opacity-40'}
Expand Down
Binary file added static/img/favicon2.ico
Binary file not shown.
2 changes: 1 addition & 1 deletion tailwind.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ module.exports = {
sm: '4px',
},
screens: {
sm: '0px',
lg: '997px',
sm: '0px',
},
colors: {
syncoBlue: '#1D3370',
Expand Down

0 comments on commit 5b1078c

Please sign in to comment.