mirror of
https://github.com/9x/sheetmusictrainer.git
synced 2026-09-02 09:34:33 +02:00
resize fretboard
This commit is contained in:
85
src/App.css
85
src/App.css
@@ -48,7 +48,7 @@
|
|||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
max-width: 600px;
|
max-width: 850px;
|
||||||
transition: transform 0.2s ease;
|
transition: transform 0.2s ease;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -498,3 +498,86 @@ button {
|
|||||||
color: var(--color-primary);
|
color: var(--color-primary);
|
||||||
box-shadow: var(--shadow-sm);
|
box-shadow: var(--shadow-sm);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* Mobile Landscape Optimization */
|
||||||
|
@media (max-height: 500px) and (orientation: landscape) {
|
||||||
|
.app-header {
|
||||||
|
padding: 4px var(--spacing-md);
|
||||||
|
}
|
||||||
|
|
||||||
|
.main-stage {
|
||||||
|
padding: 4px;
|
||||||
|
flex-direction: row;
|
||||||
|
/* Side-by-side if screen is wide enough */
|
||||||
|
align-items: stretch;
|
||||||
|
gap: var(--spacing-md);
|
||||||
|
}
|
||||||
|
|
||||||
|
.card.sheet-music-card {
|
||||||
|
max-width: 95vw;
|
||||||
|
flex-direction: row;
|
||||||
|
flex-wrap: wrap;
|
||||||
|
justify-content: center;
|
||||||
|
align-items: center;
|
||||||
|
padding: var(--spacing-sm);
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Specific adjustment for sheet music container */
|
||||||
|
.sheet-music-container {
|
||||||
|
width: auto;
|
||||||
|
flex: 1;
|
||||||
|
min-width: 250px;
|
||||||
|
max-width: 50%;
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Hint card should be on the side */
|
||||||
|
.hint-card {
|
||||||
|
margin-top: 0;
|
||||||
|
margin-left: var(--spacing-md);
|
||||||
|
flex: 1;
|
||||||
|
min-width: 250px;
|
||||||
|
max-width: 45%;
|
||||||
|
padding: var(--spacing-xs);
|
||||||
|
}
|
||||||
|
|
||||||
|
.hint-note {
|
||||||
|
font-size: 1.2rem;
|
||||||
|
margin-bottom: 2px;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Make sure hint isn't huge and scrolls if needed */
|
||||||
|
.fretboard-container {
|
||||||
|
max-height: 150px;
|
||||||
|
overflow-y: hidden;
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.fretboard-container svg {
|
||||||
|
height: 100%;
|
||||||
|
width: auto;
|
||||||
|
max-width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Move feedback and actions */
|
||||||
|
.feedback-area {
|
||||||
|
width: 100%;
|
||||||
|
height: 30px;
|
||||||
|
order: 3;
|
||||||
|
/* Force to bottom */
|
||||||
|
margin-top: 5px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.action-row {
|
||||||
|
margin-top: 5px !important;
|
||||||
|
order: 4;
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Ensure FretboardHint container handles flexible width generic */
|
||||||
|
.fretboard-container {
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
@@ -343,6 +343,7 @@ function App() {
|
|||||||
|
|
||||||
<main className="main-stage">
|
<main className="main-stage">
|
||||||
<div className="card sheet-music-card">
|
<div className="card sheet-music-card">
|
||||||
|
<div className="sheet-music-container">
|
||||||
<SheetMusic
|
<SheetMusic
|
||||||
targetMidi={targetMidi}
|
targetMidi={targetMidi}
|
||||||
playedMidi={pitchData?.midi}
|
playedMidi={pitchData?.midi}
|
||||||
@@ -353,6 +354,7 @@ function App() {
|
|||||||
height={currentInstrumentDef.clefMode === 'grand' ? 300 : 250}
|
height={currentInstrumentDef.clefMode === 'grand' ? 300 : 250}
|
||||||
hideTargetNote={settings.gameMode === 'ear_training' && !revealed}
|
hideTargetNote={settings.gameMode === 'ear_training' && !revealed}
|
||||||
/>
|
/>
|
||||||
|
</div>
|
||||||
|
|
||||||
{!settings.zenMode && (
|
{!settings.zenMode && (
|
||||||
<div className="feedback-area">
|
<div className="feedback-area">
|
||||||
|
|||||||
@@ -53,10 +53,10 @@ export function FretboardHint({ tuning, positions, maxFrets = 15 }: FretboardHin
|
|||||||
return (
|
return (
|
||||||
<div className="fretboard-container" style={{ overflowX: 'auto', maxWidth: '100%' }}>
|
<div className="fretboard-container" style={{ overflowX: 'auto', maxWidth: '100%' }}>
|
||||||
<svg
|
<svg
|
||||||
width={width}
|
width="100%"
|
||||||
height={height}
|
height="100%"
|
||||||
viewBox={`0 0 ${width} ${height}`}
|
viewBox={`0 0 ${width} ${height}`}
|
||||||
style={{ display: 'block', margin: '0 auto' }}
|
style={{ display: 'block', margin: '0 auto', maxHeight: '100%' }}
|
||||||
>
|
>
|
||||||
{/* Fretboard background */}
|
{/* Fretboard background */}
|
||||||
<rect
|
<rect
|
||||||
|
|||||||
Reference in New Issue
Block a user