Page MenuHomePhabricator

D3676.id11243.diff
No OneTemporary

D3676.id11243.diff

diff --git a/web/settings/relationship/friend-list-row.css b/web/settings/relationship/friend-list-row.css
new file mode 100644
--- /dev/null
+++ b/web/settings/relationship/friend-list-row.css
@@ -0,0 +1,8 @@
+.container {
+ display: flex;
+ justify-content: space-between;
+ padding: 16px;
+ color: var(--relationship-modal-color);
+ font-size: var(--l-font-18);
+ line-height: var(--line-height-display);
+}
diff --git a/web/settings/relationship/friend-list-row.react.js b/web/settings/relationship/friend-list-row.react.js
new file mode 100644
--- /dev/null
+++ b/web/settings/relationship/friend-list-row.react.js
@@ -0,0 +1,14 @@
+// @flow
+
+import * as React from 'react';
+
+import css from './friend-list-row.css';
+import type { UserRowProps } from './user-list.react';
+
+function FriendListRow(props: UserRowProps): React.Node {
+ const { userInfo } = props;
+
+ return <div className={css.container}>{userInfo.username}</div>;
+}
+
+export default FriendListRow;
diff --git a/web/theme.css b/web/theme.css
--- a/web/theme.css
+++ b/web/theme.css
@@ -136,4 +136,5 @@
--members-modal-member-text-hover: var(--shades-white-100);
--label-default-bg: var(--violet-dark-80);
--label-default-color: var(--shades-white-80);
+ --relationship-modal-color: var(--shades-black-60);
}

File Metadata

Mime Type
text/plain
Expires
Sun, Dec 1, 2:24 PM (18 h, 18 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
2605214
Default Alt Text
D3676.id11243.diff (1 KB)

Event Timeline