diff --git a/src/components/common/messaging/bars/FilePreview.tsx b/src/components/common/messaging/bars/FilePreview.tsx
index e8cea2f3af295c352a4bb6e4b3bf06cdc59c0ff0..b33edcaaaee3b68aebc7e8ea25903fcf727a86db 100644
--- a/src/components/common/messaging/bars/FilePreview.tsx
+++ b/src/components/common/messaging/bars/FilePreview.tsx
@@ -107,7 +107,6 @@ const PreviewBox = styled.div`
 
     .icon {
         height: 100px;
-        width: 100%;
         margin-bottom: 4px;
         object-fit: contain;
     }
diff --git a/src/pages/settings/panes/Panes.module.scss b/src/pages/settings/panes/Panes.module.scss
index dc614c1b5e9ca1d562b80ce742fe401fc9fbf23a..95a57cb17b229efda27c064a55cc3de1f364ca1a 100644
--- a/src/pages/settings/panes/Panes.module.scss
+++ b/src/pages/settings/panes/Panes.module.scss
@@ -320,15 +320,7 @@
             flex-grow: 1;
         }
 
-        @media only screen and (max-width: 900px) {
-            align-items: unset;
-            flex-direction: column;
-            gap: 20px;
-
-            > button {
-                width: 100%;
-            }
-        }
+        
     }
 
     .entry {
@@ -343,6 +335,13 @@
             color: var(--primary-background);
             background: var(--accent);
             margin-bottom: 20px;
+
+            .session .detail .info > input {
+                &:focus {
+                    border-bottom: 2px solid var(--primary-background);
+                }
+            }
+
         }
 
         &[data-deleting="true"] {
@@ -423,6 +422,22 @@
     > button {
         margin-top: 20px;
     }
+
+    @media only screen and (max-width: 900px) {
+        .session {
+            align-items: unset;
+            flex-direction: column;
+            gap: 20px;
+    
+            > button {
+                width: 100%;
+            }
+        }
+
+        > button {
+            width: 100%;
+        }
+    }
 }
 
 .languages {