From e7be627292e8bce08f5bd8b8b9f96b6858d14e39 Mon Sep 17 00:00:00 2001 From: Masahiko AMANO Date: Fri, 3 Feb 2023 00:22:09 +0300 Subject: [PATCH] feat(web): make button-flex position fixed at the bottom of menu --- web/public/css/tfm.css | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/web/public/css/tfm.css b/web/public/css/tfm.css index f860494..c7f1c59 100644 --- a/web/public/css/tfm.css +++ b/web/public/css/tfm.css @@ -186,3 +186,14 @@ form { .tanzaku.selected { background-color: #0002; } + +.button-flex { + position: sticky; + position: -webkit-sticky; + bottom: 0; + left: 0; + right: 0; + margin: 0; + padding: .5rem 0; + background-color: #eee; +}