Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feature : completing the styling of the figma navbar #376

Merged
merged 2 commits into from
Sep 3, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion client/src/components/Apps/Figma/Figma.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ class Figma extends Component {
<h4 className="Logo-tag">Figma</h4>
<div className="arrow-down">^</div>
</div>
<div className="mb-1.5">
<div className="mb-1.5 fig-connect-btn">
<a
className="px-4 py-2 bg-gray-700 text-white rounded-sm"
href={deployedUrl}
Expand Down
11 changes: 11 additions & 0 deletions client/src/components/Apps/Figma/css/Figma.css
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
padding: 20px 0 20px 20px;
justify-content: flex-start;
align-items: center;
position :relative;
}

.Start-title h4 {
Expand Down Expand Up @@ -56,3 +57,13 @@
border-bottom: 1px solid #0ACF83;
}

.fig-connect-btn {
position: absolute;
top: 95px;
left: 180px;

}

.fig-connect-btn a {
background-color: #0ACF83 ;
}
5 changes: 3 additions & 2 deletions client/src/components/Apps/Github/containers/GithubHome.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import React from "react";
// import { Link } from "react-router-dom";
// import { IoChevronBackOutline } from "react-icons/io5";
import { Link } from "react-router-dom";
import { Link } from "react-router-dom";
import { IoChevronBackOutline } from "react-icons/io5";
import Image from "../assets/ZV_64LdGoao.jpg";
import GithubLogo from "../assets/Rectangle 693.jpg";
import "../style/GithubHome.css";
Expand Down
2 changes: 1 addition & 1 deletion client/src/components/MainPage/installedcard.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import React, { useState } from "react";
// import ModalComponent from "../Modal/Modal";
import Modal from "react-bootstrap/Modal";
// import Modal from "react-bootstrap/Modal";
import { useHistory, Link } from "react-router-dom";

const InstallToolsCard = ({ name, image, description, linkName }) => {
Expand Down