Classroom hatalar ve css düzeltildi.
This commit is contained in:
parent
ccbb474ec5
commit
962c4a5c1d
4 changed files with 5 additions and 5 deletions
|
|
@ -82,7 +82,7 @@ define(['./workbox-54d0af47'], (function (workbox) { 'use strict';
|
|||
"revision": "3ca0b8505b4bec776b69afdba2768812"
|
||||
}, {
|
||||
"url": "index.html",
|
||||
"revision": "0.f2iul71dnvg"
|
||||
"revision": "0.1jncqb74048"
|
||||
}], {});
|
||||
workbox.cleanupOutdatedCaches();
|
||||
workbox.registerRoute(new workbox.NavigationRoute(workbox.createHandlerBoundToURL("index.html"), {
|
||||
|
|
|
|||
|
|
@ -52,7 +52,7 @@ const DroppableSeat: React.FC<{
|
|||
}}
|
||||
>
|
||||
{student ? (
|
||||
<Avatar
|
||||
<Avatar shape='circle'
|
||||
className={
|
||||
'w-full h-full rounded-full object-cover transition-all duration-200 ' +
|
||||
'group-hover:ring-2 group-hover:ring-blue-500 group-hover:ring-offset-1'
|
||||
|
|
@ -177,7 +177,7 @@ export const SeatGrid: React.FC<SeatGridProps> = ({
|
|||
<span>Boş</span>
|
||||
</div>
|
||||
<div className="flex items-center space-x-2">
|
||||
<div className="w-4 h-4 bg-primary border-2 border-primary rounded"></div>
|
||||
<div className="w-4 h-4 bg-blue-500 border-2 border-blue-600 rounded"></div>
|
||||
<span>Dolu</span>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -25,7 +25,7 @@ const DraggableStudent: React.FC<{ student: Student }> = ({ student }) => {
|
|||
}`}
|
||||
>
|
||||
<div className="flex flex-col items-center space-y-2 group">
|
||||
<Avatar className="h-10 w-10" src={student.photoUrl || undefined}>
|
||||
<Avatar shape='circle' className="h-10 w-10" src={student.photoUrl || undefined}>
|
||||
{student.fullName
|
||||
.split(' ')
|
||||
.map((n) => n[0])
|
||||
|
|
|
|||
|
|
@ -30,7 +30,7 @@ const NotFoundPage = () => {
|
|||
onClick={() =>
|
||||
navigate(isAdminPath ? ROUTES_ENUM.protected.dashboard : ROUTES_ENUM.public.home)
|
||||
}
|
||||
className="px-6 py-3 bg-primary rounded-xl shadow hover:bg-secondary transition"
|
||||
className="px-6 py-3 bg-blue-500 rounded-xl shadow hover:bg-blue-600 transition"
|
||||
>
|
||||
{translate('::Public.notFound.button')}
|
||||
</button>
|
||||
|
|
|
|||
Loading…
Reference in a new issue