diff options
author | Lieuwe Rooijakkers <lieuwerooijakkers@gmail.com> | 2025-01-19 22:21:32 +0100 |
---|---|---|
committer | Lieuwe Rooijakkers <lieuwerooijakkers@gmail.com> | 2025-01-19 22:21:46 +0100 |
commit | 93552152be180766fda08b1bd7ccefc4d26065ff (patch) | |
tree | f9f1e19372995729adc7e1c79f16c27acd9625be /client/src/routes/app/components/content/content.css | |
parent | 6841765fcbfadbd4e3006f5fbcea45194c92e5a1 (diff) |
client advancements
Diffstat (limited to 'client/src/routes/app/components/content/content.css')
-rw-r--r-- | client/src/routes/app/components/content/content.css | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/client/src/routes/app/components/content/content.css b/client/src/routes/app/components/content/content.css new file mode 100644 index 0000000..196fb96 --- /dev/null +++ b/client/src/routes/app/components/content/content.css @@ -0,0 +1,20 @@ +.content { + display: flex; + flex-direction: column; + + flex-grow: 1; + padding: 10px; + + overflow-y: scroll; + + .title { + border: 0; + padding: 10px; + margin-left: 15px; + margin-bottom: 50px; + } + .title:focus { + border: 0; + outline: 0; + } +} |