From d8ebad92f89406c732ebed4392b7417bf9e23a1b Mon Sep 17 00:00:00 2001 From: Ali Abid Date: Thu, 15 Jul 2021 17:51:10 -0700 Subject: [PATCH] reupdate hf theme --- frontend/src/themes/huggingface.scss | 34 ++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) diff --git a/frontend/src/themes/huggingface.scss b/frontend/src/themes/huggingface.scss index 4c25540297..fb00a75105 100644 --- a/frontend/src/themes/huggingface.scss +++ b/frontend/src/themes/huggingface.scss @@ -448,4 +448,38 @@ @apply text-2xl p-2; } } + .output_dataframe { + table { + thead { + @apply font-bold border-gray-200 border-b-2; + } + th { + @apply transition cursor-pointer; + } + th:hover { + @apply bg-gray-200; + } + td, th { + @apply px-4; + } + } + .pages { + @apply flex gap-1 items-center; + } + .page { + @apply px-2 py-1 bg-gray-200; + } + .page.selected { + @apply bg-gray-300; + } + } + .output_carousel { + @apply flex flex-col gap-2; + .carousel_control { + @apply flex gap-4 justify-center items-center mt-4; + .carousel_index { + @apply text-2xl font-semibold; + } + } + } }