Skip to content

Commit 9ff6ee8

Browse files
committed
Small Send UX & style tweaks
1 parent ddbddf7 commit 9ff6ee8

File tree

3 files changed

+2
-2
lines changed

3 files changed

+2
-2
lines changed

src/components/send/send-page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ const SendPageContainer = styled.div`
2323
const TabContentContainer = styled.div`
2424
position: relative;
2525
height: calc(100vh - ${TAB_BAR_HEIGHT});
26-
box-shadow: 0 0 10px 0 rgba(0,0,0,${p => p.theme.boxShadowAlpha});
26+
box-shadow: 0 -2px 5px 0 rgba(0,0,0,${p => p.theme.boxShadowAlpha});
2727
`;
2828

2929
const SendPageKeyboardShortcuts = (props: {

src/components/send/send-request-line.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -165,6 +165,7 @@ export const SendRequestLine = (props: {
165165
type='url'
166166
spellCheck='false'
167167
placeholder='https://example.com/hello?name=world'
168+
required={true}
168169

169170
value={props.url}
170171
onFocus={prepopulateUrl}

src/components/send/send-tabs.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ const TabsContainer = styled.div.attrs(() => ({
1919
box-sizing: border-box;
2020
2121
background-color: ${p => p.theme.containerBackground};
22-
border-bottom: 1px solid ${p => p.theme.containerWatermark};
2322
2423
font-size: ${p => p.theme.textSize};
2524

0 commit comments

Comments
 (0)