Skip to content

Commit

Permalink
Merge pull request #119 from szymonpoltorak/DEV-197-HotFixHardcodedKc…
Browse files Browse the repository at this point in the history
…ThemePath

DEV-197 - de-hardoced theme path
  • Loading branch information
szymonpoltorak authored May 11, 2024
2 parents a387c30 + 368741f commit af7ea04
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@
<title>
${msg("accountManagementTitle")}
</title>
<link rel="icon" href="/resources/jxveb/common/corn/img/corn.png" />
<link rel="stylesheet" href="/resources/jxveb/common/corn/css/styles.css" />
<link rel="icon" href="${url.resourcesPath}/../../common/corn/img/corn.png" />
<link rel="stylesheet" href="${url.resourcesPath}/../../common/corn/css/styles.css" />
<link href='http://fonts.googleapis.com/css?family=Roboto' rel='stylesheet' type='text/css'>
<style>
body {
Expand All @@ -31,7 +31,7 @@
<header class="w-full bg-yellowishDark">
<nav class="w-full flex justify-between items-center py-2 px-2">
<div class="flex items-center">
<img src="/resources/jxveb/common/corn/img/corn.png" class="h-8 mr-2">
<img src="${url.resourcesPath}/../../common/corn/img/corn.png" class="h-8 mr-2">
<h1 class="text-white font-bold text-lg">Corn</h1>
</div>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@
<title>
${msg("loginTitle",(realm.displayName!''))}
</title>
<link rel="icon" href="/resources/jxveb/common/corn/img/corn.png" />
<link rel="stylesheet" href="/resources/jxveb/common/corn/css/styles.css" />
<link rel="icon" href="${url.resourcesPath}/../../corn/img/corn.png" />
<link rel="stylesheet" href="${url.resourcesPath}/../../common/corn/css/styles.css" />
<link href='http://fonts.googleapis.com/css?family=Roboto' rel='stylesheet' type='text/css'>
<style>
body {
Expand All @@ -28,7 +28,7 @@
<div class="ml-auto h-screen">
<div class="max-h-[0px] max-w-[0px]">
<div class="min-h-screen flex items-center">
<img class="min-h-[512px] min-w-[512px] ml-[-352px]" src="/resources/jxveb/common/corn/img/corn.png" />
<img class="min-h-[512px] min-w-[512px] ml-[-352px]" src="${url.resourcesPath}/../../common/corn/img/corn.png" />
</div>
</div>
<div class="bg-yellowishDark rounded-l-[32px] w-[160px] h-screen"></div>
Expand Down

0 comments on commit af7ea04

Please sign in to comment.