diff --git a/simon-says/debug.log b/simon-says/debug.log index df3eb33d2f806e1e71c9fdd3dcef5e11212fb64a..1ec9ba1db3cb28e5224bd77c07aca6822f03d6fb 100644 --- a/simon-says/debug.log +++ b/simon-says/debug.log @@ -145,3 +145,25 @@ [0829/183110.543:ERROR:crash_report_database_win.cc(469)] failed to stat report [0829/183110.543:ERROR:crash_report_database_win.cc(469)] failed to stat report [0829/183110.544:ERROR:crash_report_database_win.cc(469)] failed to stat report +[0831/110742.193:ERROR:crash_report_database_win.cc(469)] failed to stat report +[0831/110742.196:ERROR:crash_report_database_win.cc(469)] failed to stat report +[0831/110742.196:ERROR:crash_report_database_win.cc(469)] failed to stat report +[0831/110742.196:ERROR:crash_report_database_win.cc(469)] failed to stat report +[0831/110742.196:ERROR:crash_report_database_win.cc(469)] failed to stat report +[0831/110742.196:ERROR:crash_report_database_win.cc(469)] failed to stat report +[0831/110742.196:ERROR:crash_report_database_win.cc(469)] failed to stat report +[0831/110742.197:ERROR:crash_report_database_win.cc(469)] failed to stat report +[0831/110742.197:ERROR:crash_report_database_win.cc(469)] failed to stat report +[0831/110742.197:ERROR:crash_report_database_win.cc(469)] failed to stat report +[0831/110742.197:ERROR:crash_report_database_win.cc(469)] failed to stat report +[0831/110742.197:ERROR:crash_report_database_win.cc(469)] failed to stat report +[0831/110742.197:ERROR:crash_report_database_win.cc(469)] failed to stat report +[0831/110742.197:ERROR:crash_report_database_win.cc(469)] failed to stat report +[0831/110742.197:ERROR:crash_report_database_win.cc(469)] failed to stat report +[0831/110742.197:ERROR:crash_report_database_win.cc(469)] failed to stat report +[0831/110742.197:ERROR:crash_report_database_win.cc(469)] failed to stat report +[0831/110742.197:ERROR:crash_report_database_win.cc(469)] failed to stat report +[0831/110742.197:ERROR:crash_report_database_win.cc(469)] failed to stat report +[0831/110742.197:ERROR:crash_report_database_win.cc(469)] failed to stat report +[0831/110742.197:ERROR:crash_report_database_win.cc(469)] failed to stat report +[0831/110742.197:ERROR:crash_report_database_win.cc(469)] failed to stat report diff --git a/simon-says/src/features/patternGen/buttonLayout.css b/simon-says/src/features/patternGen/buttonLayout.css index e7e3133f79620f3df5dfc34b774cd340b04e0118..89c20e2149dccdb38bce1ba97b24e15a7b8fb08f 100644 --- a/simon-says/src/features/patternGen/buttonLayout.css +++ b/simon-says/src/features/patternGen/buttonLayout.css @@ -2,25 +2,25 @@ background-color: #f44336; border: none; width: 50%; - height: 300px; + height: 20em; } .bluebutton{ background-color: #008CBA; border: none; width: 50%; - height: 300px; + height: 20em; } .yellowbutton{ background-color: #ffff00; border: none; width: 50%; - height: 300px; + height: 20em; } .greenbutton{ background-color: #4CAF50; border: none; width: 50%; - height: 300px; + height: 20em; } #wrapper{ width: 100%; diff --git a/simon-says/src/features/patternGen/patternGeneration.js b/simon-says/src/features/patternGen/patternGeneration.js index dbf89a03a022417948f4fdf78d01a996ba8fee51..dac1a12b4ed7d4dea6b398ca250efbdf7364fd9a 100644 --- a/simon-says/src/features/patternGen/patternGeneration.js +++ b/simon-says/src/features/patternGen/patternGeneration.js @@ -8,7 +8,6 @@ export function Pattern() { <button class = "redbutton"> </button> <button class = "bluebutton"> - </button> <button class = 'yellowbutton'> diff --git a/simon-says/src/features/patternGen/patternSlice.js b/simon-says/src/features/patternGen/patternSlice.js new file mode 100644 index 0000000000000000000000000000000000000000..6430c5c107827803c9e9cee0a8f2bfc9bc9dd224 --- /dev/null +++ b/simon-says/src/features/patternGen/patternSlice.js @@ -0,0 +1,15 @@ +import { createSlice } from '@reduxjs/toolkit'; + +const patternSlice = createSlice({ + name: 'pattern', + initialState: { + borderState: 0, + patternList: [] + }, + reducers: { + }, +}); +export default patternSlice; + +export const { +} = patternSlice.actions; \ No newline at end of file