Skip to content

Commit

Permalink
refactor(hidden-frame): 🎉 update hidden frame with new version
Browse files Browse the repository at this point in the history
  • Loading branch information
gokhangunduz committed Aug 14, 2023
1 parent cb09c32 commit 58a59ea
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 6 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ui",
"version": "0.11.3",
"version": "0.11.6",
"private": true,
"dependencies": {
"@emotion/css": "^11.10.6",
Expand Down
21 changes: 18 additions & 3 deletions public/css/style.css
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap");

/*
! tailwindcss v3.3.2 | MIT License | https://tailwindcss.com
! tailwindcss v3.3.3 | MIT License | https://tailwindcss.com
*/

/*
Expand Down Expand Up @@ -192,6 +192,11 @@ select,
textarea {
font-family: inherit;
/* 1 */
-webkit-font-feature-settings: inherit;
font-feature-settings: inherit;
/* 1 */
font-variation-settings: inherit;
/* 1 */
font-size: 100%;
/* 1 */
font-weight: inherit;
Expand Down Expand Up @@ -342,6 +347,14 @@ menu {
padding: 0;
}

/*
Reset default styling for dialogs.
*/

dialog {
padding: 0;
}

/*
Prevent resizing textareas horizontally by default.
*/
Expand Down Expand Up @@ -2700,7 +2713,8 @@ video {
}

.underline{
text-decoration-line: underline;
-webkit-text-decoration-line: underline;
text-decoration-line: underline;
}

.accent-primary{
Expand Down Expand Up @@ -3278,7 +3292,8 @@ td{
}

.hover\:underline:hover{
text-decoration-line: underline;
-webkit-text-decoration-line: underline;
text-decoration-line: underline;
}

.focus\:ring-2:focus{
Expand Down
3 changes: 1 addition & 2 deletions src/pages/RobotPage/RobotPage.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import React, { ReactElement } from "react";
import HiddenVDIFrame from "../../components/HiddenVDIFrame/HiddenVDIFrame";
import TaskManagementLayout from "../../layouts/TaskManagementLayout";
import RosConnector from "../../components/RosConnector/RosConnector";
import RobotHeader from "../../components/RobotHeader/RobotHeader";
Expand Down Expand Up @@ -94,7 +93,7 @@ export default function RobotPage(): ReactElement {
<CodeEditor />
</div>
<RosConnector />
<HiddenVDIFrame />
{/* <HiddenVDIFrame /> */}
</div>
);
}

0 comments on commit 58a59ea

Please sign in to comment.