diff --git a/packages/bruno-app/src/components/CollectionSettings/Info/StyledWrapper.js b/packages/bruno-app/src/components/CollectionSettings/Info/StyledWrapper.js
new file mode 100644
index 000000000..7fd98347c
--- /dev/null
+++ b/packages/bruno-app/src/components/CollectionSettings/Info/StyledWrapper.js
@@ -0,0 +1,13 @@
+import styled from 'styled-components';
+
+const StyledWrapper = styled.div`
+ table {
+ td {
+ &:first-child {
+ width: 120px;
+ }
+ }
+ }
+`;
+
+export default StyledWrapper;
diff --git a/packages/bruno-app/src/components/Sidebar/Collections/Collection/CollectionProperties/index.js b/packages/bruno-app/src/components/CollectionSettings/Info/index.js
similarity index 83%
rename from packages/bruno-app/src/components/Sidebar/Collections/Collection/CollectionProperties/index.js
rename to packages/bruno-app/src/components/CollectionSettings/Info/index.js
index 376a88db4..15ebc80d7 100644
--- a/packages/bruno-app/src/components/Sidebar/Collections/Collection/CollectionProperties/index.js
+++ b/packages/bruno-app/src/components/CollectionSettings/Info/index.js
@@ -1,5 +1,5 @@
import React from 'react';
-import Modal from 'components/Modal';
+import StyledWrapper from './StyledWrapper';
function countRequests(items) {
let count = 0;
@@ -20,9 +20,9 @@ function countRequests(items) {
return count;
}
-const CollectionProperties = ({ collection, onClose }) => {
+const Info = ({ collection }) => {
return (
-
-
@@ -43,8 +43,8 @@ const CollectionProperties = ({ collection, onClose }) => {