feat: browse libraries styles fixed (#2694)

* feat: browse libraries styles fixed

* simplify jsx & css

* remove justify-content

* fix padding/margin

* Update src/components/LayerUI.scss

Co-authored-by: benjamin.kugler <benjamin.kugler@elliemae.com>
Co-authored-by: dwelle <luzar.david@gmail.com>
This commit is contained in:
Benja Kugler 2021-01-02 13:13:48 -03:00 committed by GitHub
parent aef3644c93
commit 7c3513b9df
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 53 additions and 49 deletions

View File

@ -7,13 +7,25 @@
align-items: center; align-items: center;
justify-content: center; justify-content: center;
.browse-libraries { .layer-ui__library-header {
position: absolute; display: flex;
right: 12px; align-items: center;
top: 16px; width: 100%;
margin: 2px 0;
button {
// 2px from the left to account for focus border of left-most button
margin: 0 2px;
}
a {
margin-left: auto;
// 17px for scrollbar (needed for overlay scrollbars on Big Sur?) + 1px extra
padding-right: 18px;
white-space: nowrap; white-space: nowrap;
} }
} }
}
.layer-ui__library-message { .layer-ui__library-message {
padding: 10px 20px; padding: 10px 20px;

View File

@ -124,24 +124,7 @@ const LibraryMenuItems = ({
let addedPendingElements = false; let addedPendingElements = false;
rows.push( rows.push(
<> <div className="layer-ui__library-header">
<a
className="browse-libraries"
href="https://libraries.excalidraw.com"
target="_excalidraw_libraries"
onClick={() => {
trackEvent(EVENT_EXIT, "libraries");
}}
>
{t("labels.libraries")}
</a>
<Stack.Row
align="center"
gap={1}
key={"actions"}
style={{ padding: "2px" }}
>
<ToolButton <ToolButton
key="import" key="import"
type="button" type="button"
@ -175,8 +158,17 @@ const LibraryMenuItems = ({
}); });
}} }}
/> />
</Stack.Row>
</>, <a
href="https://libraries.excalidraw.com"
target="_excalidraw_libraries"
onClick={() => {
trackEvent(EVENT_EXIT, "libraries");
}}
>
{t("labels.libraries")}
</a>
</div>,
); );
for (let row = 0; row < numRows; row++) { for (let row = 0; row < numRows; row++) {