From 084efe8a6b28ef94c22f61a273c243fc00f59ffe Mon Sep 17 00:00:00 2001 From: Swissky <12152583+swisskyrepo@users.noreply.github.com> Date: Fri, 10 Mar 2023 23:20:39 +0100 Subject: [PATCH] Fix responsive display on PATT Web --- README.md | 1 - custom.css | 14 ++++++++------ 2 files changed, 8 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 2af83d0..84f452e 100644 --- a/README.md +++ b/README.md @@ -48,7 +48,6 @@ You might also like the `Methodology and Resources` folder : - [Windows - Persistence.md](https://github.com/swisskyrepo/PayloadsAllTheThings/blob/master/Methodology%20and%20Resources/Windows%20-%20Persistence.md) - [Windows - Privilege Escalation.md](https://github.com/swisskyrepo/PayloadsAllTheThings/blob/master/Methodology%20and%20Resources/Windows%20-%20Privilege%20Escalation.md) - [Windows - Using credentials.md](https://github.com/swisskyrepo/PayloadsAllTheThings/blob/master/Methodology%20and%20Resources/Windows%20-%20Using%20credentials.md) -- [CVE Exploits](https://github.com/swisskyrepo/PayloadsAllTheThings/blob/master/CVE%20Exploits) You want more ? Check the [Books](https://github.com/swisskyrepo/PayloadsAllTheThings/blob/master/_LEARNING_AND_SOCIALS/BOOKS.md) and [Youtube videos](https://github.com/swisskyrepo/PayloadsAllTheThings/blob/master/_LEARNING_AND_SOCIALS/YOUTUBE.md) selections. diff --git a/custom.css b/custom.css index a1ea41f..7ae03fa 100644 --- a/custom.css +++ b/custom.css @@ -1,11 +1,13 @@ -.md-sidebar{ - width: 35em; -} - .md-header{ background-color: #023342; } -.md-grid{ - max-width: 100%; +@media screen and (min-width: 790px) { + .md-grid{ + max-width: 100%; + } + + .md-sidebar{ + width: auto; + } } \ No newline at end of file