diff --git a/ui/src/components/ComponentInjector/ListSearchResults/ListSearchResults.module.scss b/ui/src/components/ComponentInjector/ListSearchResults/ListSearchResults.module.scss index 8585adfa..31b378dd 100644 --- a/ui/src/components/ComponentInjector/ListSearchResults/ListSearchResults.module.scss +++ b/ui/src/components/ComponentInjector/ListSearchResults/ListSearchResults.module.scss @@ -4,9 +4,8 @@ max-width: var(--bt-list-card-container); gap: var(--bt-size-16); margin: var(--bt-size-0) auto; - overflow-x: hidden; &__tag { cursor: pointer; } -} +} \ No newline at end of file diff --git a/ui/src/components/ComponentInjector/ListSearchResults/index.tsx b/ui/src/components/ComponentInjector/ListSearchResults/index.tsx index 44fdaa0c..375330a8 100644 --- a/ui/src/components/ComponentInjector/ListSearchResults/index.tsx +++ b/ui/src/components/ComponentInjector/ListSearchResults/index.tsx @@ -1,4 +1,5 @@ import style from "./ListSearchResults.module.scss"; +import { Row } from "antd"; import { Search, Text, getCategories } from "components/General"; import { List, ListProps } from "components/ComponentInjector"; import { API_ERROR, API_NO_DATA } from "data/constants"; @@ -58,11 +59,13 @@ const ListSearchResults = ({ categoryQuery={categoryQuery} onSearchCriteriaChange={onSearchCriteriaChange} /> - + + + ); }; diff --git a/ui/src/components/InjectedComponent/ListItems/Resource/Resource.module.scss b/ui/src/components/InjectedComponent/ListItems/Resource/Resource.module.scss index 14d53b1e..793a4f45 100644 --- a/ui/src/components/InjectedComponent/ListItems/Resource/Resource.module.scss +++ b/ui/src/components/InjectedComponent/ListItems/Resource/Resource.module.scss @@ -1,11 +1,21 @@ .resource { - display: grid; + box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.1); + transition: all .3s; + min-height: 160px; + border: 1px solid rgba(0,0,0,.05); + border-radius: 8px; + background-color: #fff; + + &:hover { + box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.18); + transform: translate3d(0px, -4px, 0px); + } &_space { display: grid; - grid-template-columns: var(--bt-grid-template-1) var( - --bt-grid-template-1 - ) var(--bt-grid-template-1) auto; + grid-template-columns: + var(--bt-grid-template-1) var(--bt-grid-template-1) + var(--bt-grid-template-1) auto; } &__avatar { @@ -16,11 +26,6 @@ width: var(--bt-size-50); } - &__container { - display: flex; - justify-content: space-between; - align-items: center; - } @media screen and (max-width: 550px) { width: var(--bt-size-percent-100); diff --git a/ui/src/components/InjectedComponent/ListItems/Resource/index.tsx b/ui/src/components/InjectedComponent/ListItems/Resource/index.tsx index d29fc5cc..2c19a944 100644 --- a/ui/src/components/InjectedComponent/ListItems/Resource/index.tsx +++ b/ui/src/components/InjectedComponent/ListItems/Resource/index.tsx @@ -1,7 +1,5 @@ -import { Avatar, Card, Skeleton, Space, Tag, Typography } from "antd"; +import { Avatar, Card, Skeleton, Space, Tag, Typography,Col } from "antd"; import style from "./Resource.module.scss"; -import { Clipboard } from "components/ComponentInjector"; -import { ClipboardButton } from "components/InjectedComponent"; import { ListItemProps } from "components/ComponentInjector"; const { Title } = Typography; @@ -29,6 +27,7 @@ const Resource: React.FC> = ({ const { name, category, url } = resource || {}; return ( + > = ({ - + /> */} + ); }; diff --git a/ui/src/styles/antd-overrides.css b/ui/src/styles/antd-overrides.css index b2e0b58e..3895d4a5 100644 --- a/ui/src/styles/antd-overrides.css +++ b/ui/src/styles/antd-overrides.css @@ -13,16 +13,10 @@ h5 { border-inline-end: none !important; } -.ant-menu-submenu { - /* can we do better? */ - padding-left: 20px !important; - padding-right: 20px !important; +.ant-layout{ + background-image: linear-gradient(to top, #e6e9f0 0%, #eef1f5 100%); } -.ant-menu-item { - /* can we do better? */ - padding-left: 32px !important; -} .ant-input-textarea-affix-wrapper.ant-input-affix-wrapper > textarea.ant-input, .ant-layout-content, diff --git a/ui/src/styles/sizes.css b/ui/src/styles/sizes.css index 47314882..7223e31b 100644 --- a/ui/src/styles/sizes.css +++ b/ui/src/styles/sizes.css @@ -1,5 +1,5 @@ :where(html) { - --bt-list-card-container: 600px; + --bt-list-card-container: 1024px; --bt-converter-width: 800px; --bt-card-height: 279px;