Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
38 changes: 24 additions & 14 deletions index.html
Original file line number Diff line number Diff line change
@@ -1,21 +1,31 @@
<!doctype html>
<html lang="en">
<head>
<!-- Hotjar Tracking Code for https://www.thip.co.kr/ -->
<script>
(function (h, o, t, j, a, r) {
h.hj =
h.hj ||
function () {
(h.hj.q = h.hj.q || []).push(arguments);
};
h._hjSettings = { hjid: 6498626, hjsv: 6 };
a = o.getElementsByTagName('head')[0];
r = o.createElement('script');
r.async = 1;
r.src = t + h._hjSettings.hjid + j + h._hjSettings.hjsv;
a.appendChild(r);
})(window, document, 'https://static.hotjar.com/c/hotjar-', '.js?sv=');
(function (m, a, z, e) {
var s, t;
try {
t = m.sessionStorage.getItem('maze-us');
} catch (err) {}

if (!t) {
t = new Date().getTime();
try {
m.sessionStorage.setItem('maze-us', t);
} catch (err) {}
}

s = a.createElement('script');
s.src = z + '?apiKey=' + e;
s.async = true;
a.getElementsByTagName('head')[0].appendChild(s);
m.mazeUniversalSnippetApiKey = e;
})(
window,
document,
'https://snippet.maze.co/maze-universal-loader.js',
'77efe927-4d36-4c1a-9e5f-b47c9b90fff9',
);
</script>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/assets/custom_favicon.svg" />
Expand Down
4 changes: 2 additions & 2 deletions src/components/today-words/MessageInput.styled.ts
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ export const MessageInput = styled.textarea`
flex: 1;
background: none;
border: none;
padding: 10px 58px 10px 12px;
padding: 9px 58px 9px 12px;
color: ${semanticColors.text.primary};
font-weight: ${typography.fontWeight.regular};
font-family: ${typography.fontFamily.primary};
Expand Down Expand Up @@ -91,7 +91,7 @@ export const MessageInput = styled.textarea`
export const SendButton = styled.button<{ active: boolean }>`
position: absolute;
right: 4px;
bottom: 6px;
bottom: 7px;
width: 42px;
height: 28px;
border-radius: 20px;
Expand Down