Skip to content

Commit

Permalink
Make show hide button bigger and misc.
Browse files Browse the repository at this point in the history
  • Loading branch information
tannerkrewson committed Jul 29, 2024
1 parent d74ccd3 commit f43ba7a
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 5 deletions.
1 change: 1 addition & 0 deletions components/AccessCode.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ const AccessCode = ({ code }) => {
<style>{`
.access-code {
margin: .8em;
margin-bottom: 1.5em;
}
.access-code > span {
box-shadow: 0 0 10pt 1pt #d3d3d3;
Expand Down
8 changes: 4 additions & 4 deletions components/HideableContainer.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,12 +28,12 @@ const HideableContainer = ({ children, initialHidden, title }) => {
border-top: 1px solid #e1e1e1;
border-bottom: 1px solid #e1e1e1;
position: relative;
min-height: 14px;
min-height: 18px;
margin-bottom: 1em;
}
.status-container-content {
margin-top: 10px;
margin-top: 16px;
margin-bottom: 10px;
}
Expand All @@ -50,9 +50,9 @@ const HideableContainer = ({ children, initialHidden, title }) => {
top: -5px;
padding: 2px 10px;
line-height: 1em;
height: 16px;
height: 18px;
border: none;
font-size: 10px;
font-size: 14px;
text-transform: none;
color: #999;
}
Expand Down
6 changes: 5 additions & 1 deletion components/Settings.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,11 @@ const Settings = ({ gameState, socket }) => {
} = settings;

return (
<div>
<div
style={{
paddingTop: "1em",
}}
>
<TimeLimit
onSetMinutes={(minutes) => socket.emit("setTimeLimit", minutes)}
serverMinutes={serverMinutes}
Expand Down

0 comments on commit f43ba7a

Please sign in to comment.