mirror of
https://github.com/swisskyrepo/PayloadsAllTheThings.git
synced 2024-11-10 07:04:22 +00:00
Fix responsive display on PATT Web
This commit is contained in:
parent
f379b60ef1
commit
084efe8a6b
2 changed files with 8 additions and 7 deletions
|
@ -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.
|
||||
|
|
14
custom.css
14
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;
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue