Filter layout small (#2458)

* improve feed layout on small screens

* improve feed layout on small screens
This commit is contained in:
Robert Kleinschuster
2023-05-26 17:30:44 +02:00
committed by GitHub
parent ab991b4df2
commit 9b5f9e1440
4 changed files with 46 additions and 39 deletions

View File

@@ -45,13 +45,13 @@ export default {
}
.modal-container {
@apply w-min m-auto px-8 bg-white p-6 rounded-xl min-w-[20vw] relative;
@apply w-min m-auto bg-white p-5 rounded-xl min-w-[20vw] relative;
}
.dark .modal-container {
@apply bg-dark-700;
}
.modal-container > button {
@apply absolute right-8 top-6;
@apply absolute right-2.5 top-1;
}
</style>