synthing

a waveform sequencing synth on the web
Log | Files | Refs | Submodules

commit 95993bcdc0f2e4f94823c82f3a4e7447ef049545
parent 597f0b0a6a93e6b4dfde2848e3a97ab622dbdf3c
Author: Massimo Siboldi <mdsiboldi@gmail.com>
Date:   Mon,  9 Apr 2018 21:30:10 -0700

Give this thing a title, remove some junk, change param cursor selectors

Diffstat:
Mindex.html | 2+-
Msrc/HSlider/style.css | 1+
Msrc/Param/style.css | 2+-
Mwebpack.config.js | 5-----
4 files changed, 3 insertions(+), 7 deletions(-)

diff --git a/index.html b/index.html @@ -3,7 +3,7 @@ <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> - <title>React App</title> + <title>SynThing: A Waveform Sequencer</title> </head> <body> <div id="root"></div> diff --git a/src/HSlider/style.css b/src/HSlider/style.css @@ -22,6 +22,7 @@ display: inline-flex; position: relative; margin-left: 2px; + cursor: ew-resize; } .HSlider { diff --git a/src/Param/style.css b/src/Param/style.css @@ -6,7 +6,7 @@ box-sizing: border-box; } -.param > * { +.param * { cursor: ns-resize; } diff --git a/webpack.config.js b/webpack.config.js @@ -1,10 +1,5 @@ const path = require('path'); -console.log( - path.resolve(__dirname), - path.resolve(__dirname, '.'), - path.resolve(__dirname, '/') -); module.exports = { entry: './src/index.js', mode: 'development',