fix(git-memo): pre scroll on overflow

This commit is contained in:
Corentin Thomasset 2022-04-18 08:50:57 +02:00
parent cbf0b3d699
commit 4fc303e5e3
No known key found for this signature in database
GPG key ID: DBD997E935996158
2 changed files with 7 additions and 1 deletions

View file

@ -235,4 +235,9 @@ const cronValidation = useValidation({
opacity: 0.8;
margin: 5px 0 15px;
}
</style>
pre {
overflow: auto;
padding: 10px 0;
}
</style>

View file

@ -17,5 +17,6 @@ const themeVars = useThemeVars()
padding: 15px 22px;
background-color: v-bind('themeVars.cardColor');
border-radius: 4px;
overflow: auto;
}
</style>