diff --git a/ToDo.yaml b/ToDo.yaml index 40346d4..c4a3165 100755 --- a/ToDo.yaml +++ b/ToDo.yaml @@ -24,9 +24,6 @@ Server: Server.csproj: Find a way to keep all the libraries up to date - DbDriver: - Make getConnection() -> Based on a connection pool so that more than a specific number of connections cannot be made [ 30 connections max -> else wait for connection to open ] - Client: jobs/editor: Job Listing Skills exists but isn't implimented in the UI diff --git a/src/Client/src/app/pages/resumes/editor/editor.component.css b/src/Client/src/app/pages/resumes/editor/editor.component.css index 0daf73e..7230e75 100644 --- a/src/Client/src/app/pages/resumes/editor/editor.component.css +++ b/src/Client/src/app/pages/resumes/editor/editor.component.css @@ -1,4 +1,38 @@ +input, textarea { + border: none; + background-color: transparent; +} + +h1 { + margin: 0; + font-size: 15px; +} + +.paper { + width: 70vw; + aspect-ratio: 1 / 1.294; + background: white; + box-shadow: 0 0 10px rgba(0, 0, 0, 0.2); + margin: auto; + margin-top: 50px; + border: 1px solid #ddd; +} + +.columns { + columns: 2; +} + +.resume-header { + width: 70vw; + background: white; + box-shadow: 0 0 10px rgba(0, 0, 0, 0.2); + margin: auto; + margin-top: 50px; + border: 1px solid #ddd; +} + .resume-section { + break-inside: avoid; background-color: #DDDDDD; margin: 10px; } diff --git a/src/Client/src/app/pages/resumes/editor/editor.component.html b/src/Client/src/app/pages/resumes/editor/editor.component.html index 15c06d1..954a35a 100644 --- a/src/Client/src/app/pages/resumes/editor/editor.component.html +++ b/src/Client/src/app/pages/resumes/editor/editor.component.html @@ -1,140 +1,149 @@