Skip to content

Commit

Permalink
Merge pull request #171 from thoughtindustries/CLM-7027-correct-links…
Browse files Browse the repository at this point in the history
…-for-starter-app

CLM-7027 Make starter app more out of the box
  • Loading branch information
AlexONeillTI committed Jan 3, 2023
2 parents 58491e8 + 1eaebf3 commit 25e6bd3
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 30 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -54,17 +54,17 @@ export default function CurrentUserNavBar() {
<Avatar size="small" />
<div className="mx-3 my-auto">
<button className="hover:text-blue-700">
<a href="/learn/profile">My Profile</a>
<a href="/learn/account?tab=dashboard.account_profile">My Profile</a>
</button>
</div>
</div>
<hr></hr>
<a href="/learn/profile">
<a href="/learn/account?tab=dashboard.account">
<li className="md:hover:bg-white hover:bg-slate-100 rounded pl-2 pt-4 pb-2">
Account
My Account
</li>
</a>
<a href="/transcript">
<a href="learn/transcript">
<li className="md:hover:bg-white hover:bg-slate-100 rounded pl-2 py-2">
Transcript
</li>
Expand All @@ -75,7 +75,7 @@ export default function CurrentUserNavBar() {
</li>
</a>
<hr></hr>
<a href="/signout">
<a href="/learn/sign_out">
<div className="text-center pt-5 text-sm text-blue-900 hover:text-blue-700">
Sign out
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -60,24 +60,26 @@ export default function CurrentUserSmallScreenNavBar() {
<Avatar size="" />
<div className="mx-3 my-auto">
<button className="hover:text-blue-700">
<a href="/learn/profile">My Profile</a>
<a href="learn/account?tab=dashboard.account_profile">My Profile</a>
</button>
</div>
</div>
<hr></hr>
<li className="md:hover:bg-white hover:bg-slate-100 rounded pl-2 py-1.5">
<a href="/account">Account</a>
<a href="learn/account?tab=dashboard.account">Account</a>
</li>
<li className="md:hover:bg-white hover:bg-slate-100 rounded pl-2 py-2">
<a href="/transcript">Transcript</a>
<a href="learn/transcript">Transcript</a>
</li>
<li className="md:hover:bg-white hover:bg-slate-100 rounded pl-2 py-2">
<a href="/support">Support</a>
</li>
<hr></hr>
<div className="text-center pt-5 text-sm text-blue-900 hover:text-blue-700">
Sign out
</div>
<a href="/learn/sign_out">
<div className="text-center pt-5 text-sm text-blue-900 hover:text-blue-700">
Sign out
</div>
</a>
<hr></hr>
</ul>
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ export default function UserLoginNavBar() {
<a href="/catalog">Catalog</a>
</li>
<li className="md:hover:bg-white hover:bg-slate-100 rounded py-2 pl-4">
<a href="/support3">Help</a>
<a href="/support">Help</a>
</li>
<hr></hr>
</ul>
Expand Down Expand Up @@ -61,7 +61,7 @@ export default function UserLoginNavBar() {
<a href="/catalog">Catalog</a>
</li>
<li className="md:hover:bg-white hover:bg-slate-100 rounded pl-2 py-2">
<a href="/support3">Help</a>
<a href="/support">Help</a>
</li>
<hr></hr>
<button className="md:hidden my-auto items-center bg-blue-900 hover:bg-blue-700 text-white font-bold py-2 px-4 w-full rounded">
Expand Down
25 changes: 8 additions & 17 deletions tooling/template-base/renderer/tailwind.css
Original file line number Diff line number Diff line change
Expand Up @@ -792,10 +792,6 @@ Ensure the default browser behavior of the `hidden` attribute.
height: 100%;
}

.h-96 {
height: 24rem;
}

.h-9 {
height: 2.25rem;
}
Expand All @@ -812,6 +808,10 @@ Ensure the default browser behavior of the `hidden` attribute.
height: auto;
}

.h-96 {
height: 24rem;
}

.h-10 {
height: 2.5rem;
}
Expand Down Expand Up @@ -848,10 +848,6 @@ Ensure the default browser behavior of the `hidden` attribute.
width: 25%;
}

.w-full {
width: 100%;
}

.w-9 {
width: 2.25rem;
}
Expand All @@ -864,6 +860,10 @@ Ensure the default browser behavior of the `hidden` attribute.
width: 20rem;
}

.w-full {
width: 100%;
}

.w-5 {
width: 1.25rem;
}
Expand Down Expand Up @@ -1025,10 +1025,6 @@ Ensure the default browser behavior of the `hidden` attribute.
align-items: center;
}

.items-stretch {
align-items: stretch;
}

.justify-start {
justify-content: flex-start;
}
Expand Down Expand Up @@ -1323,11 +1319,6 @@ Ensure the default browser behavior of the `hidden` attribute.
object-fit: cover;
}

.object-fill {
-o-object-fit: fill;
object-fit: fill;
}

.p-24 {
padding: 6rem;
}
Expand Down

0 comments on commit 25e6bd3

Please sign in to comment.