-
API access
-
+
+ API access
+
Create API tokens to hack on your Atlas.
- Learn more in API documentation.
-
+ Learn more in
API documentation.
+
{this.store.apiKeys &&
-
+
{this.store.apiKeys &&
this.store.apiKeys.map(key => (
@@ -70,21 +69,18 @@ import PageTitle from 'components/PageTitle';
/>
))}
-
}
-
-
-
-
-
-
+
}
+
+
+
);
}
}
@@ -148,4 +144,18 @@ class InlineForm extends React.Component {
}
}
+const Section = styled.div`
+ margin-bottom: 40px;
+`;
+
+const Table = styled.table`
+ margin-bottom: 20px;
+ width: 100%;
+
+ td {
+ margin-right: 20px;
+ color: ${color.slate};
+ }
+`;
+
export default Settings;
diff --git a/frontend/scenes/Settings/Settings.scss b/frontend/scenes/Settings/Settings.scss
deleted file mode 100644
index 20a48ff8..00000000
--- a/frontend/scenes/Settings/Settings.scss
+++ /dev/null
@@ -1,19 +0,0 @@
-@import '~styles/constants.scss';
-
-.section {
- margin-bottom: 40px;
-}
-
-.sectionHeader {
- border-bottom: 1px solid #eee;
-}
-
-.apiKeyTable {
- margin-bottom: 20px;
- width: 100%;
-
- td {
- margin-right: 20px;
- color: #969696;
- }
-}